|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-09-19 07:33 UTC] derick@php.net
[2005-09-27 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 17:00:02 2025 UTC |
Description: ------------ when the registered shutdown_function is called, headers are already sent and they only contain : "X-Powered-By" Reproduce code: --------------- <?php function print_document() { if ( headers_sent() ) { var_dump( headers_list() ); } header( "Content-Type: text/xml" ); } register_shutdown_function( 'print_document' ); ?> Expected result: ---------------- No warning Actual result: -------------- array(1) { [0]=> string(12) "X-Powered-By" } Warning: Cannot modify header information - headers already sent by (output started at /home/panard/public_html/bugs/register_shutdown_function.php:5) in /home/panard/public_html/bugs/register_shutdown_function.php on line 7