PHP使用json为何总是报错
$res = '{
"status": "ok", //接口状态,参考http://www.heweather.com/documents/api
"basic": { //基本信息
"city": "北京", //城市名称
"cnty": "中国", //国家
"id": "CN101010100", //城市ID,参见http://www.heweather.com/documents/cn-city-list
"lat": "39.904000", //城市维度
"lon": "116.391000", //城市经度
"update": { //更新时间
"loc": "2015-07-02 14:44", //当地时间
"utc": "2015-07-02 06:46" //UTC时间
}
}
}';
var_dump(json_decode($res)); //显示结果
// $json = '{"foo": 12345}';
// $obj = json_decode($json);
// print $obj->{'foo'}; // 12345
?>
抱的错都是类似syntax error, unexpected 'status' (T_STRING) in /Applications/MAMP/htdocs/testjson.php on line 5
回复讨论(解决方案)
你的代码就这些?那把json里面注释去掉。。。
你的代码就这些?那把json里面注释去掉。。。
好像去掉注释真的可以显示出来了,大概是这样的
object(stdClass)#1 (2)
{
["status"]=> string(2) "ok"
["basic"]=> object(stdClass)#2 (6)
{
["city"]=> string(6) "北京"
["cnty"]=> string(6) "中国"
["id"]=> string(11) "CN101010100"
["lat"]=> string(9) "39.904000"
["lon"]=> string(10) "116.391000"
["update"]=> object(stdClass)#3 (2)
{
["loc"]=> string(16) "2015-07-02 14:44"
["utc"]=> string(16) "2015-07-02 06:46"
}
}
}
排好版之后的样子,那比如说 $res = json_decode($res) 之后应该怎么提取这个数组里面的“id”的值呢
$obj->basic->id
json_decode($json, true);
出来的就是数组了
好像不行,这样没法提取单个数据值
当我从一个URL获取了json包之后,$res = curl_exec($ch); 不论怎么处理,整个json包都会展现出来,而不是我想要提取的其中某个字段
$ch = curl_init();
$url = 'https://api.heweather.com/x3/weather?cityid=CN101200101&key=7081f8010abe4638a86e0c4c1cfee30e';
// 执行HTTP请求
curl_setopt($ch , CURLOPT_URL , $url);
curl_setopt($ch , CURLOPT_SSL_VERIFYPEER , false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$res = json_decode(curl_exec($ch));
echo $res['now']['cond']['txt'];
?>
这段请求无法获取到需要的天气值
echo $res[key($res)][0]['now']['cond']['txt']; //多云
其实你 print_r($res); 就可以看到 now 是在第三维的
注释去掉即可
$res = '{ "status": "ok", "basic": { "city": "北京", "cnty": "中国", "id": "CN101010100", "lat": "39.904000", "lon": "116.391000", "update": { "loc": "2015-07-02 14:44", "utc": "2015-07-02 06:46" } }}';var_dump(json_decode($res)); //显示结果
object(stdClass)[1]
public 'status' => string 'ok' (length=2)
public 'basic' =>
object(stdClass)[2]
public 'city' => string '北京' (length=6)
public 'cnty' => string '中国' (length=6)
public 'id' => string 'CN101010100' (length=11)
public 'lat' => string '39.904000' (length=9)
public 'lon' => string '116.391000' (length=10)
public 'update' =>
object(stdClass)[3]
public 'loc' => string '2015-07-02 14:44' (length=16)
public 'utc' => string '2015-07-02 06:46' (length=16)
获取id可以这样写
$res = '{ "status": "ok", "basic": { "city": "北京", "cnty": "中国", "id": "CN101010100", "lat": "39.904000", "lon": "116.391000", "update": { "loc": "2015-07-02 14:44", "utc": "2015-07-02 06:46" } }}';$data = json_decode($res); //显示结果echo $data->basic->id;
CN101010100
echo $res[key($res)][0]['now']['cond']['txt']; //多云
其实你 print_r($res); 就可以看到 now 是在第三维的
好像还是不行,刚才试了一下你这个,也不能输出任何东西
注释去掉即可
$res = '{ "status": "ok", "basic": { "city": "北京", "cnty": "中国", "id": "CN101010100", "lat": "39.904000", "lon": "116.391000", "update": { "loc": "2015-07-02 14:44", "utc": "2015-07-02 06:46" } }}';var_dump(json_decode($res)); //显示结果
object(stdClass)[1]
public 'status' => string 'ok' (length=2)
public 'basic' =>
object(stdClass)[2]
public 'city' => string '北京' (length=6)
public 'cnty' => string '中国' (length=6)
public 'id' => string 'CN101010100' (length=11)
public 'lat' => string '39.904000' (length=9)
public 'lon' => string '116.391000' (length=10)
public 'update' =>
object(stdClass)[3]
public 'loc' => string '2015-07-02 14:44' (length=16)
public 'utc' => string '2015-07-02 06:46' (length=16)
获取id可以这样写
$res = '{ "status": "ok", "basic": { "city": "北京", "cnty": "中国", "id": "CN101010100", "lat": "39.904000", "lon": "116.391000", "update": { "loc": "2015-07-02 14:44", "utc": "2015-07-02 06:46" } }}';$data = json_decode($res); //显示结果echo $data->basic->id;
CN101010100
麻烦看一下我7楼的代码,从中如何提取天气的txt
$ch = curl_init();$url = 'https://api.heweather.com/x3/weather?cityid=CN101200101&key=7081f8010abe4638a86e0c4c1cfee30e';// 执行HTTP请求curl_setopt($ch , CURLOPT_URL , $url);curl_setopt($ch , CURLOPT_SSL_VERIFYPEER , false);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);$res = json_decode(curl_exec($ch), true); //json_decode 要有第二个参数,这样可解析成数组echo $res[key($res)][0]['now']['cond']['txt'], PHP_EOL; //为什么要这样写,看看 print_r 的输出就知道了print_r($res);

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
