15 lines
240 B
PHP
15 lines
240 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';
|
|
}
|