php-src/tests/run-test/test007.phpt
2003-04-12 21:53:46 +00:00

61 lines
1.2 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--TEST--
dirname test
--FILE--
<?php
// Allow for either Win32 or Unix.
$s = dirname("/foo");
// $s should be either / (Unix) or \ (Win32)
function check_dirname($path) {
global $s;
$path1 = str_replace("%",$s,$path);
$path2 = dirname($path1);
$path3 = str_replace($s,"%",$path2);
print "dirname($path) == $path3\n";
}
check_dirname("%foo%");
check_dirname("%foo");
check_dirname("%foo%bar");
check_dirname("%");
check_dirname("...%foo");
check_dirname(".%foo");
check_dirname("foobar%%%");
check_dirname("%\0%\0%\0.%\0.");
function same($a,$b) {
if ($a == $b) {
print "OK\n";
} else {
print "FAIL $a == $b\n";
}
}
if ('/' == $s) {
same(".",dirname("d:\\foo\\bar.inc"));
same(".",dirname("c:\\foo"));
same(".",dirname("c:\\"));
same(".",dirname("c:"));
} else {
same("d:\\foo",dirname("d:\\foo\\bar.inc"));
same("c:\\",dirname("c:\\foo"));
same("c:\\",dirname("c:\\"));
same("c:",dirname("c:"));
}
?>
--EXPECT--
dirname(%foo%) == %
dirname(%foo) == %
dirname(%foo%bar) == %foo
dirname(%) == %
dirname(...%foo) == ...
dirname(.%foo) == .
dirname(foobar%%%) == .
dirname(%%%.%.) == %%%.
OK
OK
OK
OK