objects_010.phpt 290 B

12345678910111213141516171819
  1. --TEST--
  2. redefining constructor (__construct second)
  3. --INI--
  4. error_reporting=8191
  5. --FILE--
  6. <?php
  7. class test {
  8. function test() {
  9. }
  10. function __construct() {
  11. }
  12. }
  13. echo "Done\n";
  14. ?>
  15. --EXPECTF--
  16. Strict Standards: Redefining already defined constructor for class test in %s on line %d
  17. Done