可以通过json_encode()函数来实现,将数据变量转成json格式的字符串。
函数介绍:
PHP json_encode() 用于对变量进行 JSON 编码,该函数如果执行成功返回JSON数据,否则返回FALSE。
语法:
string json_encode ( $value [, $options = 0 ] )
参数介绍:
value: 要编码的值。该函数只对 UTF-8 编码的数据有效。
代码实现:
<?php class Emp { public $name = ""; public $hobbies = ""; public $birthdate = ""; } $e = new Emp(); $e->name = "sachin"; $e->hobbies = "sports"; $e->birthdate = date('m/d/Y h:i:s a', "8/5/1974 12:20:03 p"); $e->birthdate = date('m/d/Y h:i:s a', strtotime("8/5/1974 12:20:03")); echo json_encode($e);?>
结果:
{"name":"sachin","hobbies":"sports","birthdate":"08\/05\/1974 12:20:03 pm"}
PHP函数json_encode()如何将数据变量转成json