blob: e3daeec6802d4df75da0b6b1b7fee41d4f0d333c (
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;
}
}
?>
|