diff options
author | Michael Wallner <mike@php.net> | 2010-05-31 10:29:43 (GMT) |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2010-05-31 10:29:43 (GMT) |
commit | 11d24c1593d6617f73d3f290617bd8994182f4dc (patch) | |
tree | eddeffa97ad3893b731144afb003e26ef0952de9 /tests/output/ob_get_status.phpt | |
parent | 27299b7e4084adb236acfbfb25168d72306ee802 (diff) | |
download | php-11d24c1593d6617f73d3f290617bd8994182f4dc.tar.gz |
* implement new output API, fixing some bugs and implementing some feature
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implemented new zlib API
* fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?)
Thanks to Jani and Felipe for pioneering.
Diffstat (limited to 'tests/output/ob_get_status.phpt')
-rw-r--r-- | tests/output/ob_get_status.phpt | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/tests/output/ob_get_status.phpt b/tests/output/ob_get_status.phpt index a6a3498..9580729 100644 --- a/tests/output/ob_get_status.phpt +++ b/tests/output/ob_get_status.phpt @@ -15,20 +15,19 @@ var_dump($status); array(1) { [0]=> array(7) { + ["name"]=> + string(22) "default output handler" + ["type"]=> + int(0) + ["flags"]=> + int(112) + ["level"]=> + int(0) ["chunk_size"]=> int(0) - ["size"]=> - int(40960) - ["block_size"]=> - int(10240) - ["type"]=> - int(1) - ["status"]=> + ["buffer_size"]=> + int(16384) + ["buffer_used"]=> int(0) - ["name"]=> - string(22) "default output handler" - ["del"]=> - bool(true) } } - |