#单引号和双引号的区别
\\就是表示它本身。
单引号只能解析\' 和\\两个转义符,而双引号能解析所有转义符。。
单引号不会解析局部变量而
双引号会
如
$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