我在做了一段很长的sint做Ruby之后写了一些PHP代码,我意外地写了这个:
[root@ip-10-160-47-98 test]# cat run.php run(); [root@ip-10-160-47-98 test]# php run.php string(8) "thistest" [root@ip-10-160-47-98 test]#
现在,this.test应该是$ this-> test,但是编译器真的很乐意让它运行.
有谁知道(this.test)如何转换成字符串"thistest"?
编译并在php 5.3.2亚马逊实例ami-e32273a6(CentOS 5.4)上运行
-daniel
this
并test
隐式转换为字符串,并且.
是连接运算符.