php-src/ext/standard/tests/file/file_basic.phpt

78 lines
1.6 KiB
Plaintext
Raw Normal View History

2007-06-06 12:53:58 +00:00
--TEST--
Test file() function : basic functionality
--FILE--
<?php
/*
* Prototype: array file ( string filename [,int use-include_path [,resource context]] );
* Description: Reads entire file into an array
* Returns the file in an array
*/
require(dirname(__FILE__) . '/file.inc');
$file_path = dirname(__FILE__);
2007-11-05 17:43:21 +00:00
echo "*** Testing file() with basic types of files ***\n";
2007-06-06 12:53:58 +00:00
$filetypes = array("numeric", "text", "empty", "text_with_new_line");
foreach( $filetypes as $type ) {
2007-11-02 03:56:02 +00:00
create_files($file_path, 1, $type, 0755, 100, "w", "file_basic", 1, "byte");
print_r( file($file_path."/file_basic1.tmp") );
delete_files($file_path, 1, "file_basic");
2007-06-06 12:53:58 +00:00
}
2007-11-05 17:43:21 +00:00
echo "*** Testing for return type of file() function ***\n";
2007-06-06 12:53:58 +00:00
foreach( $filetypes as $type ) {
2007-11-02 03:56:02 +00:00
create_files($file_path, 1, $type, 0755, 1, "w", "file_basic");
$ret_arr = file($file_path."/file_basic1.tmp");
2007-06-06 12:53:58 +00:00
var_dump( is_array($ret_arr) );
2007-11-02 03:56:02 +00:00
delete_files($file_path, 1, "file_basic");
2007-06-06 12:53:58 +00:00
}
echo "\n--- Done ---";
?>
--EXPECTF--
2007-11-05 17:43:21 +00:00
*** Testing file() with basic types of files ***
2007-06-06 12:53:58 +00:00
Array
(
[0] => 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
)
Array
(
[0] => text text text text text text text text text text text text text text text text text text text text
)
Array
(
)
Array
(
[0] => line
[1] => line of text
[2] => line
[3] => line of text
[4] => line
[5] => line of text
[6] => line
[7] => line of text
[8] => line
[9] => line of text
[10] => line
[11] => line
)
2007-11-05 17:43:21 +00:00
*** Testing for return type of file() function ***
2007-06-06 12:53:58 +00:00
bool(true)
bool(true)
bool(true)
bool(true)
--- Done ---
2007-11-05 17:43:21 +00:00