File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / output / ob_flush_error_001.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 4 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Test ob_flush() function : error conditions 
--FILE--
<?php
/* Prototype  : proto bool ob_flush(void)
 * Description: Flush (send) contents of the output buffer. The last buffer content is sent to next buffer 
 * Source code: main/output.c
 * Alias to functions: 
 */

echo "*** Testing ob_flush() : error conditions ***\n";

// One argument
echo "\n-- Testing ob_flush() function with one argument --\n";
$extra_arg = 10;;
var_dump( ob_flush($extra_arg) );

echo "Done";
?>
--EXPECTF--
*** Testing ob_flush() : error conditions ***

-- Testing ob_flush() function with one argument --

Warning: ob_flush() expects exactly 0 parameters, 1 given in %s on line 13
NULL
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>