001.phpt 161 B

123456789101112
  1. --TEST--
  2. posix_access() with bogus paths
  3. --EXTENSIONS--
  4. posix
  5. --FILE--
  6. <?php
  7. var_dump(posix_access(str_repeat('bogus path', 1042)));
  8. ?>
  9. --EXPECT--
  10. bool(false)