<?php
header("Content-Type:text/html;charset=utf-8");
$json_src=file_get_contents("json.json");
print_r($json_src);
echo "<br>";
echo "<br>";
echo "<br>";
$json=json_decode($json_src);
echo $json->status->title;
echo "<br>";
echo $json->status->url;
/*
json.json文件代码如下
{
"status": {
"code": "200",
"url": "www.jisuying.com",
"title": "阿瑟斯"
}
}
*/
?>
header("Content-Type:text/html;charset=utf-8");
$json_src=file_get_contents("json.json");
print_r($json_src);
echo "<br>";
echo "<br>";
echo "<br>";
$json=json_decode($json_src);
echo $json->status->title;
echo "<br>";
echo $json->status->url;
/*
json.json文件代码如下
{
"status": {
"code": "200",
"url": "www.jisuying.com",
"title": "阿瑟斯"
}
}
*/
?>