What’s the best online resource to learn about installing JSON API’s
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By far the most common way to deal with JSON encoding/decoding in PHP is to use the json_encode/json_decode functions that come with (you don’t need to install them) PHP 5.2.0 or higher.
Have a look at http://www.php.net/manual/en/book.json.php and pay particular attention to http://www.php.net/manual/en/function.json-encode.php and http://www.php.net/manual/en/function.json-decode.php
If you want to familiarize yourself with the JSON format, have a look at http://www.json.org/