SplFileInfo_001.phpt 156 B

1234567891011
  1. --TEST--
  2. Testing SplFileInfo calling the constructor twice
  3. --FILE--
  4. <?php
  5. $x = new splfileinfo(1);
  6. $x->__construct(1);
  7. echo "done!\n";
  8. ?>
  9. --EXPECT--
  10. done!