objects_011.phpt 210 B

123456789101112131415161718
  1. --TEST--
  2. redefining constructor (__construct first)
  3. --INI--
  4. error_reporting=8191
  5. --FILE--
  6. <?php
  7. class test {
  8. function __construct() {
  9. }
  10. function test() {
  11. }
  12. }
  13. echo "Done\n";
  14. ?>
  15. --EXPECT--
  16. Done