PEAR::getStaticProperty()

PEAR::getStaticProperty()

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

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

  • string $class - the name of your class, where you call getStaticProperty()

  • string $var the variable to retrieve.

Return value

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

© Copyright 2003-2023 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.