摘要: 很多编程语言对于字符串的连接,只需要用加号+就OK了,例如:JAVA:String str1="Hello";String str3=str1+"World";System.out.println(str3);//输出结果为 Hello World;但是PHP 是用点号 . 来连接字符串PHP:$s... 阅读全文
posted @ 2014-12-30 14:25 mooreliu 阅读(1746) 评论(0) 推荐(1)