JSON - Javascript Object Notation.It's a lightweight data interchange format and also a subset of javascript programming language.Json is language independent.It is has hierarchical values as well.Easy to read and write.
Example:
$json_data = '{"a":"code","b":"expertz","c":"json","d":"read","e":"php"}'; $encoded_json = json_decode($json_data); print_r($encoded_json);
OUTPUT
Category:
Comments