Anyone know why class static vars are inherited?  (See code below)

class A
{
   public static $CONFIG = null;
}

A::$CONFIG = "A";

class B extends A
{
   public static $CONFIG = null;
}

B::$CONFIG = "B";

print ("A: " . A::$CONFIG . "<br>");
print ("B: " . B::$CONFIG . "<br>");

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to