If you have a class that's mostly/entirely static, and you need static properties, you can use this method to simulate them. Eg. in your method(s) do this:
$myVar = &PEAR::getStaticProperty('myVar'); |
string $class - the name of your class, where you call getStaticProperty()
string $var the variable to retrieve.
Example 26-1. Using getStaticProperty()
This would print
|