Post-install script structure | |
PEAR Manual | |
require_once 'PEAR.php'; |
mixed &PEAR::getStaticProperty (
string $class
,
string $var
)
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:
|
string $class - the name of your class, where you call getStaticProperty()
string $var the variable to retrieve.
mixed - A reference to the variable. If not set, it will be auto initialised to NULL.
Using getStaticProperty()
|
This would print
value = foo |
Post-install script structure | |
PEAR Manual | |