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]]])
20 var_dump(ob_start($arg_1, $arg_2, $arg_3, $extra_arg));
23 var_dump(ob_start(1.5));
26 var_dump(ob_start("justPrint", "this should be an int"));
29 var_dump(ob_start("justPrint", 0, "this should be a bool"));
35 Warning: ob_start() expects at most 3 parameters, 4 given in %s on line 17
40 Warning: ob_start(): no array or string given in %s on line 20
42 Notice: ob_start(): failed to create buffer in %s on line 20
47 Warning: ob_start() expects parameter 2 to be integer, string given in %s on line 23
52 Warning: ob_start() expects parameter 3 to be integer, string given in %s on line 26