Sample code for 30+ languages & platforms
PHP ActiveX

Copy JSON Object from one JSON Array to Another

See more JSON Examples

Demonstrates how to copy an object in a JSON array to another JSON array.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$arr1 = new COM("Chilkat.JsonArray");
$arr2 = new COM("Chilkat.JsonArray");

$s = '[{\'a\':1}, {\'b\':2}, {\'c\':3}]';
$sEmpty = '[]';

$arr1->Load($s);
$arr2->Load($sEmpty);

$jObj = new COM("Chilkat.JsonObject");
$arr1->ObjectAt2(1,$jObj);

$arr2->AddObjectCopyAt(-1,$jObj);

print $arr2->emit() . "\n";

// output is:   [{"b":2}]

?>