PHP中双引号和单引号的区别一览 2020/12/3 | 博客 | 评论(0) | 阅读(30) <?php //单引号中可以使用双引号,双引号中也可以使用单引号; $str1='this is a "demo"'; $str2="this is a 'demo'"; //单引号中不可以再使用单引号,双引号中也不可以再使用双引号; //$str3='very 'good'!'; //错误 //$str4="it is a "good" day";//错误 //双引号可以解析变量,单引号不可以解...