Home » PEAR » PEAR » Bug #1978
Please add this function setStaticProperty
Details
| Request #1978 | Please add this function setStaticProperty |
|---|---|
| Submitted | 2004-07-25 13:18 UTC |
| From | moander at atc dot no |
| Assigned | pajoye |
| Status | Wont fix |
| Package | PEAR |
| PHP Version | Irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2004-07-25 13:18 UTC] moander at atc dot no
Description:
------------
/**
*
* @access public
* @param string $class
* @param string $var
* @param mixed $value
* @see PEAR::getStaticProperty
*/
function setStaticProperty($class, $var, $value)
{
$set =& PEAR::getStaticProperty($class, $var);
$set = $value;
}
[2004-07-26 13:47 UTC] pierre at dotgeek dot org
I fail to see the benefits, except filling the function space.
--Pierre