Home
last modified time | relevance | path

Searched refs:ob_start (Results 1 – 25 of 381) sorted by last modified time

12345678910>>...16

/PHP-5.5/tests/output/
H A Dob_get_clean_basic_001.phpt12 ob_start();
H A Dob_get_clean_basic_002.phpt10 ob_start();
H A Dob_get_contents_error_001.phpt18 ob_start();
H A Dob_get_length_basic_001.phpt13 ob_start();
H A Dob_get_level_basic_001.phpt17 ob_start();
20 ob_start();
H A Dob_implicit_flush_basic_002.phpt14 ob_start();
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_basic_002.phpt2 ob_start(): Check behaviour with various callback return values.
31 ob_start($callback);
H A Dob_start_basic_003.phpt2 ob_start(): ensure even fatal error test is affected by output buffering.
10 ob_start('f');
H A Dob_start_basic_004.phpt2 ob_start() chunk_size: confirm buffer is flushed after any output call that causes its length to eq…
8 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
22 ob_start('callback', $cs);
30 ob_start('callback', $cs);
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'));
28 Warning: ob_start(): non-static method C::h() should not be called statically in %s on line 20
H A Dob_start_basic_006.phpt47 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")));
79 Notice: ob_start(): failed to create buffer in %s on line 44
85 Warning: ob_start(): class 'f' not found in %s on line 47
87 Notice: ob_start(): failed to create buffer in %s on line 47
[all …]
H A Dob_start_basic_unerasable_001.phpt2 ob_start(): Ensure content of unerasable buffer can be accessed by ob_get_contents().
11 ob_start('callback', 0, false);
H A Dob_start_basic_unerasable_002.phpt2 ob_start(): Ensure unerasable buffer cannot be erased by ob_clean(), ob_end_clean() or ob_end_flush…
11 ob_start('callback', 0, false);
H A Dob_start_basic_unerasable_003.phpt2 ob_start(): Ensure unerasable buffer cannot be accessed or erased by ob_get_clean().
11 ob_start('callback', 0, false);
H A Dob_start_basic_unerasable_004.phpt2 ob_start(): Ensure unerasable buffer cannot be accessed or flushed by ob_get_flush().
11 ob_start('callback', 0, false);
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_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"));
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 long, string given in %s on line 23
[all …]
H A Dob_start_error_002.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
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
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
[all …]
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)));
18 Warning: ob_start(): array must have exactly two members in %s on line %d
20 Notice: ob_start(): failed to create buffer in %s on line 11
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')));
18 Warning: ob_start(): class 'C' does not have a method 'f' in %s on line %d
20 Notice: ob_start(): failed to create buffer in %s on line 11
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_end_flush_basic_001.phpt17 ob_start();
20 ob_start();
H A Dob_flush_basic_001.phpt17 ob_start();
H A Dob_get_contents_basic_001.phpt21 ob_start();
29 ob_start();
37 ob_start();
44 ob_start();

Completed in 23 milliseconds

12345678910>>...16