Lines Matching refs:ob_start
2 Test wrong number of arguments and wrong arg types for ob_start()
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
16 var_dump(ob_start(array("nonExistent","f")));
17 var_dump(ob_start(array("C","nonExistent")));
18 var_dump(ob_start("C::no"));
19 var_dump(ob_start("no"));
23 Warning: ob_start(): class 'nonExistent' not found in %s on line 13
25 Notice: ob_start(): failed to create buffer in %s on line 13
28 Warning: ob_start(): class 'C' does not have a method 'nonExistent' in %s on line 14
30 Notice: ob_start(): failed to create buffer in %s on line 14
33 Warning: ob_start(): class 'C' does not have a method 'no' in %s on line 15
35 Notice: ob_start(): failed to create buffer in %s on line 15
38 Warning: ob_start(): function 'no' not found or invalid function name in %s on line 16
40 Notice: ob_start(): failed to create buffer in %s on line 16