blob: ad9da4b3ca249e104993971b8008ff821bfb1d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
class Person
{
public $ID = -1;
public $FirstName = '';
public $LastName = '';
public $WeightInKilograms = 0.0;
public $HeightInMeters = 0.0;
private $_birthDate = '';
//setters and getter for BirthDate
public function getBirthDate()
{
return $this->_birthDate;
}
public function setBirthDate($value)
{
$this->_birthDate = $value;
}
}
?>
|