php-src/ext/standard/tests/general_functions/var_export_basic4.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

147 lines
2.3 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--
Test var_export() function with valid strings
--FILE--
<?php
/* Prototype : mixed var_export(mixed var [, bool return])
* Description: Outputs or returns a string representation of a variable
* Source code: ext/standard/var.c
* Alias to functions:
*/
echo "*** Testing var_export() with valid strings ***\n";
// different valid string
$valid_strings = array(
"\"\"" => "",
"\" \"" => " ",
"''" => '',
"' '" => ' ',
"\"string\"" => "string",
"'string'" => 'string',
"\"\\0Hello\\0 World\\0\"" => "\0Hello\0 World\0",
"\"NULL\"" => "NULL",
"'null'" => 'null',
"\"FALSE\"" => "FALSE",
"'false'" => 'false',
"\"\\x0b\"" => "\x0b",
"\"\\0\"" => "\0",
"'\\0'" => '\0',
"'\\060'" => '\060',
"\"\\070\"" => "\070"
);
/* Loop to check for above strings with var_export() */
echo "\n*** Output for strings ***\n";
foreach($valid_strings as $key => $str) {
echo "\n-- Iteration: $key --\n";
var_export( $str );
echo "\n";
var_export( $str, FALSE);
echo "\n";
var_dump( var_export( $str, TRUE) );
echo "\n";
}
?>
===DONE===
--EXPECT--
*** Testing var_export() with valid strings ***
*** Output for strings ***
-- Iteration: "" --
''
''
string(2) "''"
-- Iteration: " " --
' '
' '
string(3) "' '"
-- Iteration: '' --
''
''
string(2) "''"
-- Iteration: ' ' --
' '
' '
string(3) "' '"
-- Iteration: "string" --
'string'
'string'
string(8) "'string'"
-- Iteration: 'string' --
'string'
'string'
string(8) "'string'"
-- Iteration: "\0Hello\0 World\0" --
'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''
'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''
string(49) "'' . "\0" . 'Hello' . "\0" . ' World' . "\0" . ''"
-- Iteration: "NULL" --
'NULL'
'NULL'
string(6) "'NULL'"
-- Iteration: 'null' --
'null'
'null'
string(6) "'null'"
-- Iteration: "FALSE" --
'FALSE'
'FALSE'
string(7) "'FALSE'"
-- Iteration: 'false' --
'false'
'false'
string(7) "'false'"
-- Iteration: "\x0b" --
' '
' '
string(3) "' '"
-- Iteration: "\0" --
'' . "\0" . ''
'' . "\0" . ''
string(14) "'' . "\0" . ''"
-- Iteration: '\0' --
'\\0'
'\\0'
string(5) "'\\0'"
-- Iteration: '\060' --
'\\060'
'\\060'
string(7) "'\\060'"
-- Iteration: "\070" --
'8'
'8'
string(3) "'8'"
===DONE===