Documentation is available at static.php
1 <?php
2 /**
3 * @package Examples
4 * @author Derick Rethans <derick@php.net>
5 */
6
7 /**
8 * Class foo that does static bar
9 * @package Examples
10 */
11 class static_foo {
12 /**
13 * This function may be called statically
14 * @static
15 */
16 function bar () {
17 }
18 }
19
20 static_foo::bar();
21 ?>
Documentation generated on Tue, 18 Nov 2003 18:06:12 +0100 by phpDocumentor 1.2.2