PHP の変数の扱いにおける一重引用符と二重引用符の違い
変数を一重引用符で囲んだ場合は文字列として扱われ、二重引用符で囲んだ場合は変数として扱われます。 . 処理中 (この時点で {} を使用して展開することも、展開しないこともできます)。
<span style="color: #008080;">1</span> <?<span style="color: #000000;">php</span><span style="color: #008080;">2</span> <span style="color: #800080;">$txt</span> = "hello, this is from txt"<span style="color: #000000;">;</span><span style="color: #008080;">3</span> <span style="color: #0000ff;">echo</span> 'the word is {$txt}'; <span style="color: #008000;">//</span><span style="color: #008000;">the word is {$txt}</span><span style="color: #008080;">4</span> <span style="color: #0000ff;">echo</span> "the word is {<span style="color: #800080;">$txt</span>}"; <span style="color: #008000;">//</span><span style="color: #008000;">the word is hello, this is from txt</span>