Searched refs:PHP_MAXPATHLEN (Results 1 – 14 of 14) sorted by relevance
/php-src/ext/phar/tests/ |
H A D | bug66960.phpt | 12 var_dump(file_exists("phar://$file/". str_repeat('a', PHP_MAXPATHLEN-1))); 13 var_dump(file_exists("phar://$file/". str_repeat('a', PHP_MAXPATHLEN))); 14 var_dump(file_exists("phar://$file/". str_repeat('a', PHP_MAXPATHLEN+1)));
|
H A D | GHSA-jqcx-ccgc-xwhv.phpt | 11 $phar->addFromString(str_repeat('A', PHP_MAXPATHLEN - 1), 'This is the content of file 1.'); 12 $phar->addFromString(str_repeat('B', PHP_MAXPATHLEN - 1).'C', 'This is the content of file 2.'); 17 // Must not be a string of length PHP_MAXPATHLEN+1
|
H A D | bug77396.phpt | 7 $path = '../' . str_repeat("x", PHP_MAXPATHLEN) . '.tar';
|
/php-src/ext/xmlwriter/tests/ |
H A D | bug48204.phpt | 2 xmlwriter_open_uri with PHP_MAXPATHLEN + 1 7 $path = str_repeat('a', PHP_MAXPATHLEN + 1);
|
/php-src/ext/fileinfo/tests/ |
H A D | finfo_open_003.phpt | 7 $buggyPath = str_repeat('a', PHP_MAXPATHLEN + 1);
|
H A D | finfo_open_004.phpt | 9 $buggyPath = str_repeat('a', PHP_MAXPATHLEN + 1);
|
/php-src/ext/standard/tests/strings/ |
H A D | 007-win32.phpt | 7 $file = str_repeat("A", PHP_MAXPATHLEN - strlen(__DIR__ . DIRECTORY_SEPARATOR . __FILE__));
|
H A D | 007.phpt | 7 $file = str_repeat("A", PHP_MAXPATHLEN - strlen(__DIR__ . DIRECTORY_SEPARATOR . __FILE__));
|
/php-src/ext/dom/tests/ |
H A D | DOMDocument_schemaValidate_error6.phpt | 18 var_dump($doc->schemaValidate(str_repeat(" ", PHP_MAXPATHLEN + 1)));
|
H A D | DOMDocument_load_error6.phpt | 22 var_dump($dom->load(str_repeat(" ", PHP_MAXPATHLEN + 1)));
|
/php-src/tests/security/ |
H A D | bug53226.phpt | 13 $file = str_repeat('x', 2 * PHP_MAXPATHLEN);
|
/php-src/ext/standard/tests/file/ |
H A D | fnmatch_maxpathlen.phpt | 9 $longstring = str_pad('blah', PHP_MAXPATHLEN);
|
/php-src/ext/standard/tests/dir/ |
H A D | bug80960.phpt | 11 opendir(str_pad("longname", PHP_MAXPATHLEN - strlen(getcwd()), "_"));
|
/php-src/main/ |
H A D | main.stub.php | 150 const PHP_MAXPATHLEN = UNKNOWN; define
|
Completed in 12 milliseconds