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
在大多数情况下(尽管如果您知道自己在做什么,也有例外),它们是不好的做法,每当您看到有人使用它们时,数组可能是更好的主意。
这意味着“作者应该使用关联数组”。
(它是一个变量变量)