php开发http json接口

php开发http json接口

PHP5.2开始内置了JSON的支持。当然,如果低于这个版本的话,那么市面上有很多PHP版本的实现,随便下一个用就OK啦。现在主要是说说PHP内置支持的JSON。很简单,两个函数:json_encode和json_decode。

<?php
$arr = array(
‘name’ => ‘林则徐’,
‘nick’ => ‘haran’
);
$json_string = json_encode($arr);
echo $json_string;
?>

注意,文件必须以utf-8的格式保存,否则encode的时候,没有输出。

<?php
$arr = array(
‘name’ => ‘林则徐’,
‘nick’ => ‘haran’,
‘contact’ => array(
’email’ => ‘url at qq dot com’,
‘website’ => ‘http://www.url.com’,
)
);
$json_string = json_encode($arr);
$obj = json_decode($json_string);
print_r($obj);
?>

http://www.kuaizh.com/?p=1132

你可能感兴趣的:(php开发http json接口)