aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html')
-rw-r--r--public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html b/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
index 93a0a0c..8d821d7 100644
--- a/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
+++ b/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html
@@ -689,15 +689,15 @@ ${
先程と同じく、<code>chr</code>や<code>printf</code>を生成する部分は長くなるので省いた。
</p>
- <pre class="monospaced highlight"><code>${
-'_
-'}</code></pre>
+ <pre class="highlight monospaced"><code>${
+&apos;_
+&apos;}</code></pre>
<p>
は変数で、中にはスペースとエスケープが入っている (<code>chr(32) . chr(92)</code>)。シェルに渡されている文字列は次のようになる。
</p>
- <pre class="monospaced highlight"><code>e\
+ <pre class="highlight monospaced"><code>e\
c\
h\
o\
@@ -718,9 +718,9 @@ o\
ちなみに、PHP 8.2 からは、この記法で Warning が出るようになるようだ。
</p>
- <pre class="monospaced highlight"><code>${
-'_
-'}</code></pre>
+ <pre class="highlight monospaced"><code>${
+&apos;_
+&apos;}</code></pre>
<p>
最新版で警告が出るというのも美しくないので、私としては本編の解法を推す。