Bug in zend_do_perform_implementation_check(?)

php.internals

Timm Friebe

23 years ago
thekid@friebes:~/devel/php/tests > cat inheritance.php <?php class Object { function __construct() { } } class String extends Object { function __construct() { } } var_dump(new String()); ?> thekid@friebes:~/devel/php/tests > php5 inheritance.php Fatal error: Declaration of string::__construct() must be the same as ::() in /usr/home/thekid/devel/php/tests/inheritance.php on line 6 - Timm

Zeev Suraski

23 years ago
Fixed, thanks! Zeev At 22:01 29/03/2003, Timm Friebe wrote: