15 lines
221 B
PHP
15 lines
221 B
PHP
<?php
|
|
|
|
class ChildContext
|
|
{
|
|
public $parent = array(
|
|
'child' => 'child works',
|
|
);
|
|
|
|
public $grandparent = array(
|
|
'parent' => array(
|
|
'child' => 'grandchild works',
|
|
),
|
|
);
|
|
}
|