You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
include __DIR__ . '/../models/person.php';
|
|
$people = array();
|
|
|
|
$people[] = new Person('joni', 52);
|
|
$people[] = new Person('bob', 34);
|
|
$people[] = new Person('sally', 21);
|
|
$people[] = new Person('matt', 37);
|
|
?>
|