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