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 测试中看到了 $$var。我想知道它是什么..
谢谢
变量变量 - 检查链接!
变量变量
这将引用特定变量的值。
例如:
$test = "Hi"; $var = "test";
现在$$var将显示“嗨”
$$var
$var = 'something'; $$var = 'lol'; echo $something will output "lol"
它是一个变量变量。