php-src/ext/standard/tests/file/file_basic.phpt
Peter Kokot d679f02295 Sync leading and final newlines in *.phpt sections
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.

According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
2018-10-15 04:33:09 +02:00

76 lines
1.6 KiB
PHP

--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__);
echo "*** Testing file() with basic types of files ***\n";
$filetypes = array("numeric", "text", "empty", "text_with_new_line");
foreach( $filetypes as $type ) {
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");
}
echo "*** Testing for return type of file() function ***\n";
foreach( $filetypes as $type ) {
create_files($file_path, 1, $type, 0755, 1, "w", "file_basic");
$ret_arr = file($file_path."/file_basic1.tmp");
var_dump( is_array($ret_arr) );
delete_files($file_path, 1, "file_basic");
}
echo "\n--- Done ---";
?>
--EXPECT--
*** Testing file() with basic types of files ***
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
)
*** Testing for return type of file() function ***
bool(true)
bool(true)
bool(true)
bool(true)
--- Done ---