Use self::$cnt but internals@ is not meant for PHP questions but for
discussing development of PHP.
Andi
At 07:48 PM 2/12/2004 +, [EMAIL PROTECTED] wrote:
Can someone point me to some more information on using PHP 5's static
class variables? All I have been able to find is the zend php5 ch
Can someone point me to some more information on using PHP 5's static class variables?
All I have been able to find is the zend php5 changes page.
Consider:
error_reporting(E_ALL | E_STRICT);
class foo
{
static $cnt = 0;
function getCnt1() { return $this->cnt; } // Does not work, undefined va