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.
ダブル $ ステートメントは PHP で何を表していますか?
それは可変変数を意味します:
$a = 'b'; $b = 'test'; print $$a; // test
ほとんどの場合 (自分が何をしているのかを知っている場合は例外があります)、それらは悪い習慣であり、誰かがそれらを使用しているのを見たときはいつでも、おそらくより良い考えです。
「作者は連想配列を使うべきだ」という意味です。
(可変変数です)