Home
last modified time | relevance | path

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

12345678910>>...18

/php-src/tests/output/
H A Dob_start_error_002.phpt2 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
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
[all …]
H A Dob_start_basic_006.phpt46 var_dump(ob_start(array("f")));
49 var_dump(ob_start(array("f", "f")));
52 var_dump(ob_start(array("f", "C::g", "f", "C::g")));
55 var_dump(ob_start(array("f", "non_existent", "f")));
58 var_dump(ob_start(array("f", "non_existent", "f", "f")));
62 var_dump(ob_start(array($c, "h")));
65 var_dump(ob_start(array($c, "h")));
78 Notice: ob_start(): Failed to create buffer in %s on line %d
84 Warning: ob_start(): class "f" not found in %s on line %d
86 Notice: ob_start(): Failed to create buffer in %s on line %d
[all …]
H A Dbug65593.phpt2 Bug #65593 (ob_start(function(){ob_start();});)
7 ob_start(function(){ob_start();});
12 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug6…
H A Dob_013.phpt26 ob_start();
27 ob_start('a');
28 ob_start('b');
29 ob_start('c');
30 ob_start('d');
31 ob_start(['E', 'f']);
32 ob_start([$e, 'g']);
33 ob_start($e);
34 ob_start(function ($s) { return $s; });
35 ob_start();
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.
11 ob_start();
18 var_dump(ob_start('f'));
22 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
H A Dob_start_error_003.phpt2 Test ob_start() with object supplied but no method.
13 var_dump(ob_start(array($c)));
17 Warning: ob_start(): array callback must have exactly two members in %s on line %d
19 Notice: ob_start(): Failed to create buffer in %s on line %d
H A Dob_start_error_004.phpt2 Test ob_start() with non existent callback method.
13 var_dump(ob_start(array($c, 'f')));
17 Warning: ob_start(): class C does not have a method "f" in %s on line %d
19 Notice: ob_start(): Failed to create buffer in %s on line %d
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 Dbug60282.phpt7 ob_start();
8 ob_start();
9 ob_start('ob_gzhandler');
H A Dob_start_basic_005.phpt2 ob_start(): non-static method as static callbacks.
22 var_dump(ob_start('C::h'));
27 Warning: ob_start(): non-static method C::h() cannot be called statically in %s on line %d
29 Notice: ob_start(): Failed to create buffer in %s on line %d
H A Dob_start_error_001.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
19 var_dump(ob_start(1.5));
25 Warning: ob_start(): no array or string given in %s on line %d
27 Notice: ob_start(): Failed to create buffer in %s on line %d
H A Dbug70970.phpt15 ob_start();
23 ob_start('obHandler');
28 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug7…
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_start_basic_001.phpt2 Test return type and value for ob_start()
9 var_dump(ob_start());
H A Dob_get_status.phpt9 ob_start();
14 ob_start();
19 ob_start();
H A Dob_get_contents_basic_001.phpt14 ob_start();
22 ob_start();
30 ob_start();
37 ob_start();
/php-src/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) {
31 *** Testing ob_start() : closures as output handlers ***
H A Dbug80771.phpt5 ob_start();
9 ob_start();
/php-src/Zend/tests/
H A Dgh10695_6.phpt9 ob_start(function () {
10 throw new \Exception('ob_start');
14 Caught: ob_start
/php-src/ext/mbstring/tests/
H A Dmb_output_handler_pattern-05.phpt8 ob_start();
9 ob_start('mb_output_handler');
H A Dmb_output_handler_pattern-11.phpt8 ob_start();
9 ob_start('mb_output_handler');
/php-src/tests/lang/
H A Dbug24951.phpt11 ob_start("test");
18 ob_start("test");
26 ob_start("test");
/php-src/ext/standard/tests/array/
H A Dbug71220.phpt2 Bug #71220 (Null pointer deref (segfault) in compact via ob_start)
5 ob_start("compact");

Completed in 30 milliseconds

12345678910>>...18