PEAR::getStaticProperty()

PEAR::getStaticProperty() -- handle static properties (package developer related)

Synopsis

require_once 'PEAR.php';

mixed &PEAR::getStaticProperty (string $class, string $var)

Description

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');
You must use a reference, or they will not persist!

Parameter

Return value

mixed - A reference to the variable. If not set, it will be auto initialised to NULL.

Example