<?php echo "hello star"; ?>
<?php $a = 5;//相当于int a = 5 $b = "this is a string";//相当于 string b = "this is a string" ?>简单解释下,上面把$a设置成5,php会自动将$a设置成整型变量。$b同样的道理。
<?php $a = 5; $b = 6; $c = "this is a string"; echo $a . $b;//输出结果为56 echo $a . $c;//输出结果为 5this is a string ?>4)php的运算符
5)其实掌握以上几点的话,开发一个简单的微信公众平台还是勉强够看的,剩下的内容推荐大家去w3c是这个网站上学习。上面的教程写的都很棒,是想学好php绝对不能错过的网站!
http://www.w3school.com.cn/php/index.asp
【玩转微信公众平台之七】 PHP语法简单介绍,布布扣,bubuko.com
原文地址:http://blog.csdn.net/star530/article/details/25744137