php中的单双引号
程序员文章站
2022-05-01 20:46:11
...
单引号内部的变量不会执行
双引号会执行
如
$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
以上就介绍了php中的单双引号,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。