/
proc
/
3430793
/
root
/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
standard
/
tests
/
dir
/
File Upload :
llllll
Current File: //proc/3430793/root/usr/local/lsws/phpbuild/php-8.0.7/ext/standard/tests/dir/dir_variation8.phpt
--TEST-- Test dir() function : usage variations - checking with wildcard characters --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') { die('skip.. Not valid for Windows'); } ?> --FILE-- <?php /* * Create more than one temporary directory & subdirectory and check if dir() function can open * those directories when wildcard characters are used to refer to them. */ echo "*** Testing dir() : checking with wildcard characters ***\n"; // create the temporary directories $file_path = __DIR__; $dir_path = $file_path."/dir_variation81"; $sub_dir_path = $dir_path."/sub_dir1"; @mkdir($dir_path1); @mkdir($sub_dir_path); /* with different wildcard characters */ echo "-- wildcard = '*' --\n"; var_dump( dir($file_path."/dir_var*") ); var_dump( dir($file_path."/*") ); echo "-- wildcard = '?' --\n"; var_dump( dir($dir_path."/sub_dir?") ); var_dump( dir($dir_path."/sub?dir1") ); echo "Done"; ?> --EXPECTF-- *** Testing dir() : checking with wildcard characters *** -- wildcard = '*' -- Warning: dir(%s/dir_var*): Failed to open directory: %s in %s on line %d bool(false) Warning: dir(%s/*): Failed to open directory: %s in %s on line %d bool(false) -- wildcard = '?' -- Warning: dir(%s/dir_variation81/sub_dir?): Failed to open directory: %s in %s on line %d bool(false) Warning: dir(%s/dir_variation81/sub?dir1): Failed to open directory: %s in %s on line %d bool(false) Done
Copyright ©2k19 -
Hexid
|
Tex7ure