Home
last modified time | relevance | path

Searched refs:ob_start (Results 1 – 25 of 350) sorted by relevance

12345678910>>...14

/PHP-5.3/tests/output/
H A Dob_start_error_002.phpt2 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"));
H A Dob_start_error_001.phpt2 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"));
36 Warning: ob_start() expects at most 3 parameters, 4 given in %s on line 17
44 Warning: ob_start() expects parameter 2 to be long, string given in %s on line 23
H A Dob_012.phpt6 ob_start();
7 ob_start();
8 ob_start();
9 ob_start();
H A Dob_start_error_005.phpt2 ob_start(): ensure buffers can't be added from within callback.
7 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
12 ob_start();
19 var_dump(ob_start('f'));
23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
H A Dob_013.phpt10 ob_start();
11 ob_start('a');
12 ob_start('b');
13 ob_start('c');
14 ob_start('d');
15 ob_start();
H A Dob_start_basic_006.phpt2 ob_start(): multiple buffer initialization with a single call, using arrays.
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
47 var_dump(ob_start(array("f")));
50 var_dump(ob_start(array("f", "f")));
53 var_dump(ob_start(array("f", "C::g", "f", "C::g")));
56 var_dump(ob_start(array("f", "non_existent", "f")));
59 var_dump(ob_start(array("f", "non_existent", "f", "f")));
63 var_dump(ob_start(array($c, "h")));
66 var_dump(ob_start(array($c, "h")));
71 var_dump(ob_start(array('f', 'C::g', array(array($c, "g"), array($c, "h")))));
H A Dob_start_callbacks.phpt2 Test ob_start() with callbacks in variables
8 ob_start($a);
19 ob_start($a);
24 ob_start(array('foo', 'out'));
32 ob_start($a);
H A Dob_start_basic_001.phpt2 Test return type and value for ob_start()
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
10 var_dump(ob_start());
H A Dob_start_error_003.phpt2 Test ob_start() with object supplied but no method.
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
14 var_dump(ob_start(array($c)));
H A Dob_start_error_004.phpt2 Test ob_start() with non existent callback method.
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
14 var_dump(ob_start(array($c, 'f')));
H A Dob_start_basic_005.phpt2 ob_start(): non-static method as static callbacks.
6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
23 var_dump(ob_start('C::h'));
H A Dob_002.phpt2 output buffering - ob_start
5 ob_start();
H A Dob_005.phpt5 ob_start();
7 ob_start();
H A Dob_020.phpt7 ob_start();
10 ob_start();
/PHP-5.3/ext/standard/tests/general_functions/
H A Dob_start_closures.phpt2 Test ob_start() function : closures as output handlers
7 echo "*** Testing ob_start() : closures as output handlers ***\n";
9 ob_start(function ($output) {
13 ob_start(function ($output) {
32 *** Testing ob_start() : closures as output handlers ***
/PHP-5.3/tests/lang/
H A Dbug24951.phpt11 ob_start("test");
18 ob_start("test");
26 ob_start("test");
H A Dbug22690.phpt2 Bug #22690 (ob_start() is broken with create_function() callbacks)
6 ob_start($foo);
H A Dbug23489.phpt2 Bug #23489 (ob_start() is broken with method callbacks)
7 ob_start(
/PHP-5.3/ext/mbstring/tests/
H A Dmb_output_handler_pattern-05.phpt10 ob_start();
11 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-11.phpt10 ob_start();
11 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-02.phpt11 ob_start();
12 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-03.phpt11 ob_start();
12 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-04.phpt11 ob_start();
12 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-01.phpt11 ob_start();
12 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-06.phpt11 ob_start();
12 ob_start('mb_output_handler');

Completed in 32 milliseconds

12345678910>>...14