Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰かがこれについて少し教えてくれませんか?strftimeのような関数に変数を渡す方法がわかりません。
例えば:
$day = '%a'; echo strftime('$day', time());
変数がリテラルとして渡されないようにする方法がわかりません。助けてくれてありがとう!
この例では、引用符はまったく必要ありません。
echo strftime($day, time());
一重引用符の代わりに二重引用符を使用すると、すべて問題ありません。