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"
}
More Posts related to Json-Tutorial,
- JSON Schema Validator Libraries: JSON Tutorial
- JSON Text to JavaScript Object using eval() Example: JSON Tutorial
- JSON with PHP Example: JSON Tutorial
- JSON Syntax : JSON Tutorial
- JSON Datatypes : Tutorial
- JSON Schema and Hyper-Schema : JSON Tutorial
- JSON Nest Objects Example: JSON Tutorial
- JSON Tutorial: List of Lessons
More Posts:
- [fix] zsh: command not found: git - Git
- Fix: error: legacy-install-failure Python pip/pip3 - PIP
- Java Split String by Spaces - Java
- [Solution] IDEA IntelliJ System.out.println function shortcut (sysout alternative for eclipse IDE) - HowTos
- Copy entire directory using Terminal Command [Linux, Mac, Bash] - Linux
- Python: How to add Progress Bar in Console with Examples - Python
- macOS: Remove Desktop or Documents Folder from iCloud Drive Syncing - MacOS
- Check Android Studio App is M1/M2 Chip based post installation - Android-Studio