diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/standard/tests/file/fseek_dir_basic.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/standard/tests/file/fseek_dir_basic.phpt')
-rw-r--r-- | ext/standard/tests/file/fseek_dir_basic.phpt | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/ext/standard/tests/file/fseek_dir_basic.phpt b/ext/standard/tests/file/fseek_dir_basic.phpt new file mode 100644 index 0000000..cde0bf2 --- /dev/null +++ b/ext/standard/tests/file/fseek_dir_basic.phpt @@ -0,0 +1,96 @@ +--TEST-- +Testing fseek() on a directory stream +--FILE-- +<?php + +// include the file.inc for Function: function create_files() +require(dirname(__FILE__) . '/file.inc'); + +$path = dirname(__FILE__) . '/fseek_dir_basic'; +mkdir($path); +create_files($path, 3); + +echo "call readdir():\n"; +var_dump($dh = opendir($path)); +$files = array(); +while( FALSE !== ($files[] = readdir($dh)) ) {} +sort($files); +var_dump($files); +$files = array(); + +echo "\ncall fseek() on directory resource:\n"; +var_dump(fseek($dh, 20)); + +echo "call readdir():\n"; +while( FALSE !== ($files[] = readdir($dh)) ) {} +sort($files); +var_dump($files); +$files = array(); + +echo "\ncall fseek() with different arguments on directory resource:\n"; +var_dump(fseek($dh, 20, SEEK_END)); + +echo "call readdir():\n"; +while( FALSE !== ($files[] = readdir($dh)) ) {} +sort($files); +var_dump($files); + +delete_files($path, 3); +closedir($dh); +var_dump(rmdir($path)); + +?> +--EXPECTF-- +call readdir(): +resource(%d) of type (stream) +array(6) { + [0]=> + bool(false) + [1]=> + string(1) "." + [2]=> + string(2) ".." + [3]=> + string(9) "file1.tmp" + [4]=> + string(9) "file2.tmp" + [5]=> + string(9) "file3.tmp" +} + +call fseek() on directory resource: +int(0) +call readdir(): +array(6) { + [0]=> + bool(false) + [1]=> + string(1) "." + [2]=> + string(2) ".." + [3]=> + string(9) "file1.tmp" + [4]=> + string(9) "file2.tmp" + [5]=> + string(9) "file3.tmp" +} + +call fseek() with different arguments on directory resource: +int(0) +call readdir(): +array(6) { + [0]=> + bool(false) + [1]=> + string(1) "." + [2]=> + string(2) ".." + [3]=> + string(9) "file1.tmp" + [4]=> + string(9) "file2.tmp" + [5]=> + string(9) "file3.tmp" +} +bool(true) |