mirror of
https://github.com/php/php-src.git
synced 2025-01-27 06:03:45 +08:00
17 lines
172 B
Plaintext
17 lines
172 B
Plaintext
|
--TEST--
|
||
|
redefining constructor (__construct second)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class test {
|
||
|
function test() {
|
||
|
}
|
||
|
function __construct() {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Done
|