mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
f1d7e3ca0b
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
177 lines
2.5 KiB
PHP
177 lines
2.5 KiB
PHP
--TEST--
|
|
Test session_save_path() function : error functionality
|
|
--INI--
|
|
session.gc_probability=0
|
|
session.save_path=
|
|
session.name=PHPSESSID
|
|
session.save_handler=files
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
|
|
/*
|
|
* Prototype : string session_save_path([string $path])
|
|
* Description : Get and/or set the current session save path
|
|
* Source code : ext/session/session.c
|
|
*/
|
|
|
|
echo "*** Testing session_save_path() : error functionality ***\n";
|
|
|
|
// Get an unset variable
|
|
$unset_var = 10;
|
|
unset($unset_var);
|
|
|
|
class classA
|
|
{
|
|
public function __toString() {
|
|
return "Hello World!";
|
|
}
|
|
}
|
|
|
|
$heredoc = <<<EOT
|
|
Hello World!
|
|
EOT;
|
|
|
|
$fp = fopen(__FILE__, "r");
|
|
|
|
// Unexpected values to be passed as arguments
|
|
$inputs = array(
|
|
|
|
// Integer data
|
|
/*1*/ 0,
|
|
1,
|
|
12345,
|
|
-2345,
|
|
|
|
// Float data
|
|
/*5*/ 10.5,
|
|
-10.5,
|
|
12.3456789000e10,
|
|
12.3456789000E-10,
|
|
.5,
|
|
|
|
// Null data
|
|
/*10*/ NULL,
|
|
null,
|
|
|
|
// Boolean data
|
|
/*12*/ true,
|
|
false,
|
|
TRUE,
|
|
FALSE,
|
|
|
|
// Empty strings
|
|
/*16*/ "",
|
|
'',
|
|
|
|
// Invalid string data
|
|
/*18*/ "Nothing",
|
|
'Nothing',
|
|
$heredoc,
|
|
|
|
// Object data
|
|
/*21*/ new classA(),
|
|
|
|
// Undefined data
|
|
/*22*/ @$undefined_var,
|
|
|
|
// Unset data
|
|
/*23*/ @$unset_var,
|
|
|
|
// Resource variable
|
|
/*24*/ $fp
|
|
);
|
|
|
|
|
|
$iterator = 1;
|
|
foreach($inputs as $input) {
|
|
echo "\n-- Iteration $iterator --\n";
|
|
var_dump(session_save_path($input));
|
|
$iterator++;
|
|
};
|
|
|
|
fclose($fp);
|
|
echo "Done";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing session_save_path() : error functionality ***
|
|
|
|
-- Iteration 1 --
|
|
string(0) ""
|
|
|
|
-- Iteration 2 --
|
|
string(1) "0"
|
|
|
|
-- Iteration 3 --
|
|
string(1) "1"
|
|
|
|
-- Iteration 4 --
|
|
string(5) "12345"
|
|
|
|
-- Iteration 5 --
|
|
string(5) "-2345"
|
|
|
|
-- Iteration 6 --
|
|
string(4) "10.5"
|
|
|
|
-- Iteration 7 --
|
|
string(5) "-10.5"
|
|
|
|
-- Iteration 8 --
|
|
string(12) "123456789000"
|
|
|
|
-- Iteration 9 --
|
|
string(13) "1.23456789E-9"
|
|
|
|
-- Iteration 10 --
|
|
string(3) "0.5"
|
|
|
|
-- Iteration 11 --
|
|
string(0) ""
|
|
|
|
-- Iteration 12 --
|
|
string(0) ""
|
|
|
|
-- Iteration 13 --
|
|
string(1) "1"
|
|
|
|
-- Iteration 14 --
|
|
string(0) ""
|
|
|
|
-- Iteration 15 --
|
|
string(1) "1"
|
|
|
|
-- Iteration 16 --
|
|
string(0) ""
|
|
|
|
-- Iteration 17 --
|
|
string(0) ""
|
|
|
|
-- Iteration 18 --
|
|
string(0) ""
|
|
|
|
-- Iteration 19 --
|
|
string(7) "Nothing"
|
|
|
|
-- Iteration 20 --
|
|
string(7) "Nothing"
|
|
|
|
-- Iteration 21 --
|
|
string(12) "Hello World!"
|
|
|
|
-- Iteration 22 --
|
|
string(12) "Hello World!"
|
|
|
|
-- Iteration 23 --
|
|
string(0) ""
|
|
|
|
-- Iteration 24 --
|
|
|
|
Warning: session_save_path() expects parameter 1 to be string, resource given in %s on line %d
|
|
NULL
|
|
Done
|