mirror of
https://github.com/php/php-src.git
synced 2026-03-29 19:52:20 +02:00
18 lines
494 B
PHP
18 lines
494 B
PHP
--TEST--
|
|
Test ob_start() with non existent callback method.
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
* proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
|
|
* Function is implemented in main/output.c
|
|
*/
|
|
|
|
Class C {
|
|
}
|
|
|
|
$c = new C;
|
|
var_dump(ob_start(array($c, 'f')));
|
|
echo "done"
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: ob_start(): No method name given: use ob_start(array($object,'method')) to specify instance $object and the name of a method of class C to use as output handler in %s on line 11
|