Table of Contents
Reply content:
Home Backend Development PHP Tutorial PHP takes out json and returns null

PHP takes out json and returns null

Aug 04, 2016 am 09:19 AM
php

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>
Copy after login
Copy after login

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>
Copy after login
Copy after login

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>
Copy after login
Copy after login

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>
Copy after login
Copy after login

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>
Copy after login

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~)

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles