单引号和双引号的区别

PHP允许我们在双引号串中直接包含字串变量
$str='hello';
echo "str is $str"; //运行结果: str is hello
echo 'str is $str'; //运行结果: str is $str

你可能感兴趣的:(单引号和双引号的区别)