Lines Matching refs:ob_start
2 Test wrong number of arguments and wrong arg types for ob_start()
15 var_dump(ob_start(array("nonExistent","f")));
16 var_dump(ob_start(array("C","nonExistent")));
17 var_dump(ob_start("C::no"));
18 var_dump(ob_start("no"));
22 Warning: ob_start(): class "nonExistent" not found in %s on line %d
24 Notice: ob_start(): Failed to create buffer in %s on line %d
27 Warning: ob_start(): class C does not have a method "nonExistent" in %s on line %d
29 Notice: ob_start(): Failed to create buffer in %s on line 13
32 Warning: ob_start(): class C does not have a method "no" in %s on line %d
34 Notice: ob_start(): Failed to create buffer in %s on line 14
37 Warning: ob_start(): function "no" not found or invalid function name in %s on line %d
39 Notice: ob_start(): Failed to create buffer in %s on line 15