File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / output / 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, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Test wrong number of arguments for flush() (no impact)
--FILE--
<?php
/* 
 * proto void flush(void)
 * Function is implemented in ext/standard/basic_functions.c.
 */

$extra_arg = 1;
echo "\nToo many arguments\n";
var_dump(flush($extra_arg));
?>
--EXPECTF--
Too many arguments
NULL

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