mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
13 lines
161 B
PHP
13 lines
161 B
PHP
--TEST--
|
|
posix_access() with bogus paths
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(posix_access(str_repeat('bogus path', 1042)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|