标签:
1,单引号和双引号的区别
2,类型转换
3,检测数据类型,
4,用define来定义常量,
5,对变量的赋值,
6,变量包括局部变量,全局变量,静态变量,区别是
<?php $test = ‘hello test‘; function echotest(){ global $test; echo $test; }
functin test(){ static $t=0; $t+=1; }
标签:
原文地址:http://www.cnblogs.com/ningheshutong/p/5467783.html