PHP单引号和双引号的区别
时间:2011-05-28 来源:卫佳
单引号内部的变量不会执行
双引号会执行
如$name = 'hello';
echo "the $name";
// cufflinks wholesale
会输出 the hello
而如果是单引号
$name = 'hello';
echo 'the $name';
会输出 the $name
主要区别就是这个。
相关阅读 更多 +
时间:2011-05-28 来源:卫佳
单引号内部的变量不会执行
双引号会执行
如$name = 'hello';
echo "the $name";
// cufflinks wholesale
会输出 the hello
而如果是单引号
$name = 'hello';
echo 'the $name';
会输出 the $name
主要区别就是这个。