1、'\' 表示根命名空间
new StdClass()与 new \stdClass()区别;
版本5用的斜杠:new \stdClass();
2、json
2.1、编码
json_encode;
$arr[0]=13019;
$image['image_pic']=$arr;
echo son_encode($image);
输出结果:
"{"image_pic":[13019]}"
2.2、解码
json_decode
3、验证类
validate