$a=1;
$b="1";
他们两个只是一个有引号一个没有,怎么就类型不同了
你可以使用 gettype()函数判断变量的实际类型,例如 gettype($a) 得到的是 integer类型, gettype($b) 得到的是 string类型