View Issue Details

IDProjectCategoryView StatusLast Update
0000601XdebugUncategorizedpublic2020-03-12 16:57
Reporterwhatthejeff Assigned Toderick  
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionnot fixable 
Product Version2.1.0 
Summary0000601: enable xdebug_get_headers to get status headers
Description

It would be nice if xdebug_get_headers could get status headers.

Sample Code:

<?php
header('HTTP/1.0 404 Not Found');
print_r(xdebug_get_headers());
?>

Desired Output:

Array
(
[0] => HTTP/1.0 404 Not Found
)

Actual Output:

Array
(
)

TagsNo tags attached.
Operating SystemMac OS X 10.6
PHP Version5.3.2

Activities

derick

2014-02-27 19:06

administrator   ~0002680

I looked at this, but it is not possible as PHP handles this as a special case without having the ability to hook into it.

Issue History

Date Modified Username Field Change
2010-07-30 04:42 whatthejeff New Issue
2010-07-30 04:42 whatthejeff Operating System => Mac OS X 10.6
2010-07-30 04:42 whatthejeff PHP Version => 5.3.2
2010-07-30 04:42 whatthejeff Xdebug Version => 2.1.0
2014-02-27 19:06 derick Note Added: 0002680
2014-02-27 19:06 derick Status new => resolved
2014-02-27 19:06 derick Resolution open => not fixable
2014-02-27 19:06 derick Assigned To => derick
2020-03-12 16:57 derick Category Feature/Change request => Uncategorized