PHP 双引号与单引号的区别
来源:未知 责任编辑:智问网络 发表时间:2013-08-28 11:56 点击:次
单引号内部的变量不会执行,双引号会执行。
如
$name = hello;
echo "the $name";
会输出 the hello
而如果是单引号
$name = hello;
echo the $name;
会输出 the $name
主要区别就是这个。
如
$name = hello;
echo "the $name";
会输出 the hello
而如果是单引号
$name = hello;
echo the $name;
会输出 the $name
主要区别就是这个。
相关新闻>>
- 发表评论
-
- 最新评论 更多>>