解析:
单引号内的数据不会被解析(任何变量和特殊转义字符),所以速度更快,而双引号内的数据会被解析,如变量($var)值会代入字符串中,特殊转义字符也会被解析成特定的单个字。
单引号例如:
$name='hello'; echo 'the $name';
会输出 the $name
如果是双引号
$name='hello' echo "the $name"
会输出 the hello