mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
23 lines
366 B
PHP
23 lines
366 B
PHP
--TEST--
|
|
Test wrong number of arguments for ob_end_clean()
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
* proto bool ob_end_clean(void)
|
|
* Function is implemented in main/output.c
|
|
*/
|
|
|
|
$extra_arg = 1;
|
|
|
|
echo "\nToo many arguments\n";
|
|
var_dump(ob_end_clean($extra_arg));
|
|
|
|
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Too many arguments
|
|
|
|
Warning: ob_end_clean() expects exactly 0 parameters, 1 given in %s on line 10
|
|
NULL
|