bug78386.phpt 306 B

1234567891011121314
  1. --TEST--
  2. Bug #78386 (fstat mode has unexpected value on PHP 7.4)
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') die("skip this test is for Windows platforms only");
  6. ?>
  7. --FILE--
  8. <?php
  9. $handle = popen('dir', 'r');
  10. $stat = fstat($handle);
  11. var_dump(decoct($stat['mode']));
  12. ?>
  13. --EXPECT--
  14. string(5) "10666"