json_add for php

JSON (JavaScript Object Notation) is a lightweight data-interchange format. 1. Easy for humans to read and write. 2. Easy for machines to parse and generate. 3. Collection of name/value pairs. 4. Used for C, C++, C#, Java, JavaScript, Perl, Python, and many others. 5. Compatible with universal data structures – array, vector, list, or sequence. … Read more

Install JSON on linux

Have the fun with json…. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. # yum -y install php-pear # pecl install json # vi /etc/php.d/json.ini extension=json.so # service httpd restart