View Issue Details

IDProjectCategoryView StatusLast Update
0000641XdebugProfilingpublic2020-03-12 16:47
Reportervegardlarsen Assigned Toderick  
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionwon't fix 
Product Version2.1.0 
Summary0000641: ob_gzhandler is not profiled
Description

ob_gzhandler is not present in the outputted profile dump, even though it is included.

Steps To Reproduce

<?php
ob_start('ob_gzhandler');
// do whatever you want here
?>

Additional Information

If you specify your own output buffering handler, it is present in the profile dump. If you call ob_gzhandler from your own handler, php:ob_gzhandler will be present as well.

<?php
ob_start('ob_ownhandler');
function ob_ownhandler($buffer, $mode)
{
if (strlen($buffer) <= 128)
{
return false;
}
return ob_gzhandler($buffer, $mode);
}
?>

The above will list both ob_ownhandler and ob_gzhandler in the output.

TagsNo tags attached.
Operating SystemLinux 2.6.32-24-generic-pae 0000038-Ubuntu
PHP Version5.3.2

Activities

derick

2016-12-11 23:53

administrator   ~0004016

I can't fix this, as the ob_gzhandler runs after everything else has been shut down.

Issue History

Date Modified Username Field Change
2010-11-18 08:46 vegardlarsen New Issue
2016-12-11 23:53 derick Note Added: 0004016
2016-12-11 23:53 derick Status new => resolved
2016-12-11 23:53 derick Resolution open => won't fix
2016-12-11 23:53 derick Assigned To => derick
2020-03-12 16:47 derick Category Feature/Change request => Profiling