Extending PHP static classes
I've been struggling in this area for days now, and I have reached a conclusion, but since the conclusion was not what I was looking for, before I give up, I'll try to see what other people say. Faith dies last... Let's say we have a superclass (called "Super") and a subclass (called "Sub"). class Super { protected static $title = 'super'; public static function get_class_name() { echo __CLASS__; } public static function get_title() { echo self::$title; } } class Sub extends Super { protected static $title = 'sub'; } Now, you would probably expect since Sub extends Super, that Sub would now