From: Sebastian Schürmann Date: Sat, 25 Apr 2009 18:42:13 +0000 (+0000) Subject: Initial commit X-Git-Tag: php-5.4.0alpha1~191^2~3845 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce35cb375a973f77a0de782a55c973264d0223ad;p=php Initial commit --- diff --git a/tests/output/ob_get_status.phpt b/tests/output/ob_get_status.phpt new file mode 100644 index 0000000000..a6a3498ca3 --- /dev/null +++ b/tests/output/ob_get_status.phpt @@ -0,0 +1,34 @@ +--TEST-- +ob_get_status() function basic test +--CREDITS-- +Sebastian Schürmann +sebs@php.net +Testfest 2009 Munich +--FILE-- + +--EXPECT-- +array(1) { + [0]=> + array(7) { + ["chunk_size"]=> + int(0) + ["size"]=> + int(40960) + ["block_size"]=> + int(10240) + ["type"]=> + int(1) + ["status"]=> + int(0) + ["name"]=> + string(22) "default output handler" + ["del"]=> + bool(true) + } +} +