16 lines
292 B
PHP
16 lines
292 B
PHP
<?php
|
|
|
|
class DotNotation
|
|
{
|
|
public $person = array(
|
|
'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
|
|
'age' => 24,
|
|
'hometown' => array(
|
|
'city' => 'Cincinnati',
|
|
'state' => 'OH',
|
|
),
|
|
);
|
|
|
|
public $normal = 'Normal';
|
|
}
|