《PHP实战:简单概括PHP的字符串中单引号与双引号的区别》要点:
本文介绍了PHP实战:简单概括PHP的字符串中单引号与双引号的区别,希望对您有用。如果有疑问,可以联系我们。
本日有个朋友问起,说下区别,顺便复习下.PHP应用
单引号与双引号的分歧:PHP应用
$hello= 3; echo "hello is $hello"; // 打印结果:hello is 3 echo 'hello is $hello'; // 打印结果: hello is $hello echo "hello is $hello\n"; // 打印结果: hello is 2 (同时换行) echo 'hello is $hello\n'; // 打印结果: hello is $hello\n
PS:
本日看到老外提到了PHP的单引号的问题,其中提到了有趣的东西,摘录如下:
其中说装了PHP扩展 Vulcan Logic Disassembler 后,可以看到PHP生成的中间码,
首先是:PHP应用
echo "This is a string";
会改变为:
PHP应用
ECHO 'This is a string'
而PHP应用
echo 'This is a string';
则酿成PHP应用
ECHO 'This is a string'
,是一样的
如果是PHP应用
echo "This is a $variable";
则PHP发生的OPCODE为
PHP应用
INIT STRING ~0 2 ADD_STRING ~0 ~0 'This' 3 ADD_STRING ~0 ~0 ' ' 4 ADD_STRING ~0 ~0 'is' 5 ADD_STRING ~0 ~0 ' ' 6 ADD_STRING ~0 ~0 'a' 7 ADD_STRING ~0 ~0 ' ' 8 ADD_VAR ~0 ~0 !0 9 ECHO ~0
而PHP应用
echo "This is a " . $variable;
则会酿成
PHP应用
CONCAT ~0 'This is a ' !0 2 ECHO ~0
可以见到,速度快许多了,用.连接的话PHP应用
转载请注明本页网址:
http://www.vephp.com/jiaocheng/6764.html