php-src/tests/output/ob_start_error_004.phpt
2008-12-18 15:20:47 +00:00

20 lines
381 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--
Notice: ob_start(): failed to create buffer in %s on line 11
bool(false)
done