Sample code for 30+ languages & platforms
PHP Extension Requires Chilkat v11.0.0+

JSON AppendObject2 Example

Demonstrates the AppendObject2 function.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$json = new CkJsonObject();
$json->Load('{ \'name\': \'John\', \'marbles\': 100 }');

//  Append an empty object named "addr"
$jObj = new CkJsonObject();
$json->AppendObject2('addr',$jObj);

print $json->emit() . "\n";
//  Expected output is:   {"name":"John","marbles":100,"addr":{}}

//  Add members to the object.
$jObj->AppendString('street','1200 Elm St.');
$jObj->AppendString('city','Springfield');
$jObj->AppendInt('zip',60606);

print $json->emit() . "\n";
//  Expected output is:  {"name":"John","marbles":100,"addr":{"street":"1200 Elm St.","city":"Springfield","zip":60606}}

?>