1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/standard/tests/file/dirname_no_path_normalization-win32.phpt
T
Anatol Belski ec78507bd4 dirname() should not normalize paths
This is the BC piece with the case where dirname() is used with an URL.
2017-01-24 17:56:00 +01:00

28 lines
470 B
PHP

--TEST--
Test dirname() function : regression with path normalization
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) != "WIN")
die("skip Only valid for Windows");
?>
--FILE--
<?php
$s = '/php_sanity/sanity.php?';
while (dirname($s) == "/php_sanity" && strlen($s) < 10000) {
$s .= str_repeat('X', 250);
}
if (strlen($s) >= 10000) {
echo "OK\n";
} else {
print "ERROR: " . PHP_EOL;
var_dump(dirname($s));
var_dump(strlen($s));
}
?>
===DONE===
--EXPECT--
OK
===DONE===