????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.139.237.218 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/standard/tests/general_functions/ |
Upload File : |
--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===