15 lines
284 B
PHP
15 lines
284 B
PHP
<?php
|
|
|
|
$arr = array('parent' => array(
|
|
'child' => 'child works',
|
|
),
|
|
|
|
'grandparent' => array(
|
|
'parent' => array(
|
|
'child' => 'grandchild works',
|
|
),
|
|
)
|
|
);
|
|
|
|
echo json_encode($arr);
|