show/hide this revision's text 4 new keyword is not allowed before array creation

The standard class is a neat container. I only learned about it recently.

Instead of using an array to hold serveral attributes

$person = new array();
$person['name'] = 'bob';
$person['age'] = 5;

You can use a standard class

$person = new stdClass();
$person->name = 'bob';
$person->age = 5;

This is particularly helpful when accessing these variables in a string

$string = $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string = "$person->name is $person->age years old.";
show/hide this revision's text 3 added 4 characters in body

The standard class is a neat container. I only learned about it recently.

Instead of using an array to hold serveral attributes

$person = new array();
$person['name'] = 'bob';
$person['age'] = 5;

You can use a standard class

$person = new stdClass();
$person->name = 'bob';
$person->age = 5;

This is particularly helpful when accessing these variables in a string

$string = $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string = "$person->name is $person->age years old.";
show/hide this revision's text 2 added 237 characters in body

The standard class is a neat container. I only learned about it recently.

Instead of using an array to hold serveral attributes

$person = new array();
$person['name'] = 'bob';
$person['age'] = 5;

You can use a standard class

$person = new stdClass();
$person->name = 'bob';
$person->age = 5;

This is particularly helpful when accessing these variables in a string

$string $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string "$person->name is $person->age years old.";
show/hide this revision's text 1