json_encode()
该函数主要用来将数组和对象,转换为json格式。
$arr = array (\'a\'=>\'a\',\'b\'=>\'b\',\'c\'=\'c\',\'d\'=>\'d\',\'e\'=\'e\');
echo json_encode($arr);
输出结果:
json只接受utf-8编码的字符,json_encode()的参数必须是utf-8编码。
class person
{
public $name;
public $age;
public $height;
function __construct($name,$age,$height)
{
$this->name = $name;
$this->age = $age;
$this->height = $height;
}
}
$obj = new person(\"zhangsan\",20,100);
$foo_json = json_encode($obj);
echo $foo_json;
本文地址:https://www.stayed.cn/item/5415
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我