JSON extension is a part of PHP 5.2.0.
JSON functions that are available in PHP.
- json_decode() : Decodes a JSON string
- json_encode() : Returns the JSON representation of a value
- json_last_error_msg() : Returns the error string of the last json_encode() or json_decode() call
- json_last_error() : Returns the last error occurred
PHP array to JSON Object :
<?php
//PHP array
$phpArray = array (
'songName' => 'Hotel California',
'artistName' =>'Eagles'
);
//PHP array converted to json Object using json_encode()
echo json_encode($phpArray);
?>
Output: {"songName":"Hotel California","artistName":"Eagles"}
PHP Object to JSON Object :<?php
//PHP Class
class Song {
public $songName ="";
public $songArtist ="";
}
//PHP object
$mySong = new Song();
$mySong ->songName = "November rain";
$mySong -> songArtist = "Guns and Roses";
//JSON object
$jsonObj = json_encode($mySong);
echo $jsonObj;
?>
Output: {"songName":"November rain","songArtist":"Guns and Roses"}
PHP JSON encode function Examples :JSON Object to PHP Array :
<?php
//JSON Object
$jsonMySong = '{"songName":"November rain",
"songArtist":"Guns and Roses"}';
//PHP Array
$phpArrayObj = json_decode($jsonMySong,true);
var_dump($phpArrayObj);
?>
Output: array(2) {
["songName"]=> string(13) "November rain"
["songArtist"]=> string(14) "Guns and Roses"
}
<?php
//JSON Object
$jsonMySong = '{"songName":"November rain",
"songArtist":"Guns and Roses"}';
//PHP Object
$phpyObj = json_decode($jsonMySong);
var_dump($phpObj);
?>
Output: object(stdClass)#1 (2) {
["songName"]=> string(13) "November rain"
["songArtist"]=> string(14) "Guns and Roses"
}
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!