Skip to Content
Professional Ajax, 2nd Edition
book

Professional Ajax, 2nd Edition

by Nicholas C. Zakas, Jeremy McPeak, Joe Fawcett
March 2007
Intermediate to advanced
623 pages
16h 47m
English
Wrox
Content preview from Professional Ajax, 2nd Edition

8.3. Server-Side JSON Tools

When Crockford first proposed JSON, he was the only one creating tools for encoding and decoding. As the popularity of JSON grew, others started to step up and create client- and server-side libraries to facilitate its use. Although it is beyond the scope of this book to discuss every one of these tools, it is useful to take a look at one and then develop a solution using it.

8.3.1. JSON-PHP

JSON-PHP is a PHP library for encoding and decoding JSON information. This utility, written by Michal Migurski, is available for free at http://mike.teczno.com/json.html. To use this library, simply include the JSON.php file and create an instance of the Services_JSON object:

<?php
    require_once("JSON.php");
    $oJSON = new Services_JSON();
?>

The first line includes the JSON.php file that contains the Services_JSON object definition. The second line simply instantiates the object and stores it in the variable $oJSON. Now, you're ready to start encoding and decoding JSON in your PHP page.

8.3.1.1. The encode() Method

To encode a PHP object into a JSON string, use the encode() method, which accepts a single argument: an object to encode, which can be an array or a full-fledged object. It doesn't matter how the object or array was created, by using a class definition or not; all objects can be encoded using this method. Consider the following class definition:

<?php class Person { var $age; var $hairColor; var $name; var $siblingNames; function Person($name, $age, $hairColor) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide, Fifth Edition

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide, Fifth Edition

Larry Ullman
Single Page Web Applications

Single Page Web Applications

Josh Powell, Michael Mikowski
PHP 7: Real World Application Development

PHP 7: Real World Application Development

Doug Bierer, Altaf Hussain, Branko Ajzele

Publisher Resources

ISBN: 9780470109496Purchase book