19 lines
210 B
Plaintext
19 lines
210 B
Plaintext
|
|
--TEST--
|
||
|
|
redefining constructor (__construct first)
|
||
|
|
--INI--
|
||
|
|
error_reporting=8191
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
class test {
|
||
|
|
function __construct() {
|
||
|
|
}
|
||
|
|
function test() {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
echo "Done\n";
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
Done
|