Sample code for 30+ languages & platforms
PHP Extension

AppendArrayItems Example

Demonstrates the AppendArrayItems function.

Note: This example requires Chilkat v9.5.0.82 or above.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$jarr1 = new CkJsonArray();
$jarr1->Load('[ 1, 2, 3, 4]');

$jarr2 = new CkJsonArray();
$jarr2->Load('[ 5, 6, 7, 8]');

$jarr1->AppendArrayItems($jarr2);

print $jarr1->emit() . "\n";
// Expected output: [1,2,3,4,5,6,7,8]

print $jarr2->emit() . "\n";
// Expected output: [5,6,7,8]

?>