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