标签:
(1)双引号可以解析字符串中的变量,单引号不能
$a = 10; $str = "this a var $a"; //输出this a var 10
(2)在双引号中可以使用转义字符\n \r 等,在单引号中不能(单引号中只能转义单引号‘‘ 和 转义字符本身\)
$str = ‘this a var \‘a\‘‘; //this a var ‘a‘
(3)
php字符串中单引号''和双引号“”的区别
原文地址:http://www.cnblogs.com/July7th/p/5603133.html