PHP takes out json and returns null
The code is as follows:
<code><?php $url = 'http://music.163.com/api/song/detail/?id='.$_GET['id'].'&ids=%5B'.$_GET['id'].'%5D&csrf_token='; $json = file_get_contents($url); $obj = json_decode($json); $array = array( "name" => $obj->songs[0]->bMusic->name, "artist" => $obj->songs[0]->artists[0]->name, "url" => $obj->songs[0]->mp3Url ); echo json_encode($array); ?> </code>
The json file is roughly like this:
<code>{ "songs": [ { "starred": false, "popularity": 95, "starredNum": 0, "playedNum": 0, "dayPlays": 0, "hearTime": 0, "mp3Url": "http://m2.music.126.net/2b980AHtVx18bJ_Z9MhKXA==/2830142929914115.mp3", "rtUrls": [], "status": 1, "crbt": null, "bMusic": { "volumeDelta": 0.095421, "playTime": 200000, "bitrate": 96000, "dfsId": 2830142929914115, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667967, "size": 2436177, "extension": "mp3" }, "rtUrl": null, "position": 2, "duration": 200000, "alias": [], "hMusic": { "volumeDelta": -0.05, "playTime": 200000, "bitrate": 320000, "dfsId": 2830142929914113, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667965, "size": 8056892, "extension": "mp3" }, "mMusic": { "volumeDelta": 0.41, "playTime": 200000, "bitrate": 160000, "dfsId": 2830142929914114, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667966, "size": 4042394, "extension": "mp3" }, "lMusic": { "volumeDelta": 0.095421, "playTime": 200000, "bitrate": 96000, "dfsId": 2830142929914115, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667967, "size": 2436177, "extension": "mp3" }, "album": { "songs": [], "paid": false, "onSale": false, "status": 1, "tags": "", "blurPicUrl": "http://p4.music.126.net/J32cgj_Dq-4Wpfs4U9sjwA==/2539871860943087.jpg", "companyId": 0, "pic": 2539871860943087, "description": "", "subType": null, "alias": [], "picId": 2539871860943087, "briefDesc": "", "artist": { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "", "id": 0 }, "picUrl": "http://p4.music.126.net/J32cgj_Dq-4Wpfs4U9sjwA==/2539871860943087.jpg", "commentThreadId": "R_AL_3_1983765", "artists": [ { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "Piano Tribute Players", "id": 99094 } ], "copyrightId": 0, "publishTime": 1321804800000, "company": "CC Entertainment", "name": "Piano Tribute to Adele", "id": 1983765, "type": "专辑", "size": 14 }, "commentThreadId": "R_SO_4_21515271", "artists": [ { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "Piano Tribute Players", "id": 99094 } ], "copyrightId": 0, "score": 95, "fee": 0, "mvid": 0, "ftype": 0, "rtype": 0, "rurl": null, "copyFrom": "", "audition": null, "ringtone": "", "disc": "", "no": 2, "name": "Set Fire To The Rain", "id": 21515271 } ], "equalizers": {}, "code": 200 }</code>
Upload to host page output result:
Notice: Trying to get property of non-object in on line 6 {"name":null,"artist":"Piano Tribute Players","url":null}
Reply content:
The code is as follows:
<code><?php $url = 'http://music.163.com/api/song/detail/?id='.$_GET['id'].'&ids=%5B'.$_GET['id'].'%5D&csrf_token='; $json = file_get_contents($url); $obj = json_decode($json); $array = array( "name" => $obj->songs[0]->bMusic->name, "artist" => $obj->songs[0]->artists[0]->name, "url" => $obj->songs[0]->mp3Url ); echo json_encode($array); ?> </code>
The json file is roughly like this:
<code>{ "songs": [ { "starred": false, "popularity": 95, "starredNum": 0, "playedNum": 0, "dayPlays": 0, "hearTime": 0, "mp3Url": "http://m2.music.126.net/2b980AHtVx18bJ_Z9MhKXA==/2830142929914115.mp3", "rtUrls": [], "status": 1, "crbt": null, "bMusic": { "volumeDelta": 0.095421, "playTime": 200000, "bitrate": 96000, "dfsId": 2830142929914115, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667967, "size": 2436177, "extension": "mp3" }, "rtUrl": null, "position": 2, "duration": 200000, "alias": [], "hMusic": { "volumeDelta": -0.05, "playTime": 200000, "bitrate": 320000, "dfsId": 2830142929914113, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667965, "size": 8056892, "extension": "mp3" }, "mMusic": { "volumeDelta": 0.41, "playTime": 200000, "bitrate": 160000, "dfsId": 2830142929914114, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667966, "size": 4042394, "extension": "mp3" }, "lMusic": { "volumeDelta": 0.095421, "playTime": 200000, "bitrate": 96000, "dfsId": 2830142929914115, "sr": 44100, "name": "Set Fire To The Rain", "id": 24667967, "size": 2436177, "extension": "mp3" }, "album": { "songs": [], "paid": false, "onSale": false, "status": 1, "tags": "", "blurPicUrl": "http://p4.music.126.net/J32cgj_Dq-4Wpfs4U9sjwA==/2539871860943087.jpg", "companyId": 0, "pic": 2539871860943087, "description": "", "subType": null, "alias": [], "picId": 2539871860943087, "briefDesc": "", "artist": { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "", "id": 0 }, "picUrl": "http://p4.music.126.net/J32cgj_Dq-4Wpfs4U9sjwA==/2539871860943087.jpg", "commentThreadId": "R_AL_3_1983765", "artists": [ { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "Piano Tribute Players", "id": 99094 } ], "copyrightId": 0, "publishTime": 1321804800000, "company": "CC Entertainment", "name": "Piano Tribute to Adele", "id": 1983765, "type": "专辑", "size": 14 }, "commentThreadId": "R_SO_4_21515271", "artists": [ { "img1v1Id": 0, "alias": [], "picId": 0, "briefDesc": "", "picUrl": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "albumSize": 0, "img1v1Url": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg", "trans": "", "musicSize": 0, "name": "Piano Tribute Players", "id": 99094 } ], "copyrightId": 0, "score": 95, "fee": 0, "mvid": 0, "ftype": 0, "rtype": 0, "rurl": null, "copyFrom": "", "audition": null, "ringtone": "", "disc": "", "no": 2, "name": "Set Fire To The Rain", "id": 21515271 } ], "equalizers": {}, "code": 200 }</code>
Upload to host page output result:
Notice: Trying to get property of non-object in on line 6 {"name":null,"artist":"Piano Tribute Players","url":null}
json also has two commands:
json_last_error_msg This is to get the error message of json.
json_last_error returns the last error that occurred
You can try using these two commands to see what errors occurred in json_encode.
I remember seeing something written like this in the PHP official website manual:
<code>$obj->{$music->name}</code>
This kind of thing, I don’t know if it has anything to do with it...
(I usually use arrays in similar scenarios, and I feel it’s easier to use than objects in php... I’m sorry for the newbies~)

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
