????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 52.14.186.84 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/sapi/cgi/tests/ |
Upload File : |
--TEST-- header_remove() --SKIPIF-- <?php include "skipif.inc"; ?> --FILE-- <?php include "include.inc"; $php = get_cgi_path(); reset_env_vars(); $f = tempnam(sys_get_temp_dir(), 'cgitest'); function test($script) { file_put_contents($GLOBALS['f'], $script); $cmd = escapeshellcmd($GLOBALS['php']); $cmd .= ' -n -dreport_zend_debug=0 -dhtml_errors=0 ' . escapeshellarg($GLOBALS['f']); echo "----------\n"; echo rtrim($script) . "\n"; echo "----------\n"; passthru($cmd); } test('<?php ?>'); test('<?php header_remove(); ?>'); test('<?php header_remove("X-Foo"); ?>'); test('<?php header("X-Foo: Bar"); ?>'); test('<?php header("X-Foo: Bar"); header("X-Bar: Baz"); header_remove("X-Foo"); ?>'); test('<?php header("X-Foo: Bar"); header_remove("X-Foo: Bar"); ?>'); test('<?php header("X-Foo: Bar"); header_remove("X-Foo:"); ?>'); test('<?php header("X-Foo: Bar"); header_remove(); ?>'); test('<?php header_remove(""); ?>'); test('<?php header_remove(":"); ?>'); test('<?php header("X-Foo: Bar"); echo "flush\n"; flush(); header_remove("X-Foo"); ?>'); @unlink($f); ?> --EXPECTF-- ---------- <?php ?> ---------- X-Powered-By: PHP/%s Content-type: text/html; charset=UTF-8 ---------- <?php header_remove(); ?> ---------- Content-type: text/html; charset=UTF-8 ---------- <?php header_remove("X-Foo"); ?> ---------- X-Powered-By: PHP/%s Content-type: text/html; charset=UTF-8 ---------- <?php header("X-Foo: Bar"); ?> ---------- X-Powered-By: PHP/%s X-Foo: Bar Content-type: text/html; charset=UTF-8 ---------- <?php header("X-Foo: Bar"); header("X-Bar: Baz"); header_remove("X-Foo"); ?> ---------- X-Powered-By: PHP/%s X-Bar: Baz Content-type: text/html; charset=UTF-8 ---------- <?php header("X-Foo: Bar"); header_remove("X-Foo: Bar"); ?> ---------- X-Powered-By: PHP/%s X-Foo: Bar Content-type: text/html; charset=UTF-8 Warning: Header to delete may not contain colon. in %s on line 3 ---------- <?php header("X-Foo: Bar"); header_remove("X-Foo:"); ?> ---------- X-Powered-By: PHP/%s X-Foo: Bar Content-type: text/html; charset=UTF-8 Warning: Header to delete may not contain colon. in %s on line 3 ---------- <?php header("X-Foo: Bar"); header_remove(); ?> ---------- Content-type: text/html; charset=UTF-8 ---------- <?php header_remove(""); ?> ---------- X-Powered-By: PHP/%s Content-type: text/html; charset=UTF-8 ---------- <?php header_remove(":"); ?> ---------- X-Powered-By: PHP/%s Content-type: text/html; charset=UTF-8 Warning: Header to delete may not contain colon. in %s on line 2 ---------- <?php header("X-Foo: Bar"); echo "flush\n"; flush(); header_remove("X-Foo"); ?> ---------- X-Powered-By: PHP/%s X-Foo: Bar Content-type: text/html; charset=UTF-8 flush Warning: Cannot modify header information - headers already sent by (output started at %s:3) in %s on line 5