Documentation is available at var.php
1 <?php
2 /**
3 * @package Examples
4 * @author Derick Rethans <derick@php.net>
5 */
6
7 /**
8 * Class that 'emulates' a structure as in C
9 * @package Examples
10 */
11 class person {
12 /**
13 * @var string $name The name of the person
14 */
15 var $name;
16
17 /**
18 * @var int $age The person's age
19 */
20 var $age;
21 }
22 ?>
Documentation generated on Tue, 18 Nov 2003 18:06:13 +0100 by phpDocumentor 1.2.2