php 中 两个$什么意思
1 回答
largeQ
TA贡献2039条经验 获得超7个赞
可变变量
$first ="hello";
$hello ="world";
echo $first." ".$$first;
结果是 hello world
$$first就是$hello,因为$first的值是hello
- 1 回答
- 0 关注
- 631 浏览
添加回答
举报
0/150
提交
取消