mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
26 lines
453 B
PHP
26 lines
453 B
PHP
--TEST--
|
|
Bug #40784 (Case sensivity in constructor's fallback)
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
function A () { echo "I'm A\n"; }
|
|
}
|
|
|
|
class B extends A {
|
|
function __construct() {
|
|
parent::__construct();
|
|
parent::__constrUct();
|
|
}
|
|
}
|
|
|
|
$b = new B;
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; A has a deprecated constructor in %s on line %d
|
|
I'm A
|
|
I'm A
|
|
Done
|