Home
last modified time | relevance | path

Searched refs:output (Results 26 – 50 of 577) sorted by relevance

12345678910>>...24

/PHP-7.0/ext/standard/tests/array/
H A Dshuffle_variation3.phpt57 echo "\nThe output array is:\n";
72 The output array is:
87 The output array is:
100 The output array is:
121 The output array is:
140 The output array is:
157 The output array is:
172 The output array is:
191 The output array is:
208 The output array is:
[all …]
/PHP-7.0/tests/output/
H A Dob_010.phpt2 output buffering - fatalism
13 Fatal error: print_r(): Cannot use output buffering in output buffering display handlers in %sob_01…
H A Dob_011.phpt2 output buffering - fatalism
13 Fatal error: ob_get_flush(): Cannot use output buffering in output buffering display handlers in %s…
H A Dob_start_basic_003.phpt2 ob_start(): ensure even fatal error test is affected by output buffering.
7 return "I have stolen your output";
18 I have stolen your output
H A Dbug70970.phpt2 Bug #70970 (Segfault when combining error handler with output buffering)
28 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug7…
H A Dob_start_error_005.phpt8 * Function is implemented in main/output.c
23 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %s on …
H A Dob_end_flush_error_001.phpt6 * Description: Flush (send) the output buffer, and delete current output buffer
7 * Source code: main/output.c
/PHP-7.0/sapi/cli/tests/
H A Dphp_cli_server_013.phpt14 $output = '';
32 $output .= fgets($fp);
36 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
40 $output = '';
54 $output .= fgets($fp);
58 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
61 $output = '';
75 $output .= fgets($fp);
79 echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n";
/PHP-7.0/win32/build/
H A Dbuildconf.js112 var output = "";
136 var output = "";
146 output += emit_dep_modules(item.deps);
148 output += emit_module(item);
152 return output;
160 var output = "";
168 output += emit_module(item);
174 output += emit_dep_modules(module_names);
176 return output;
/PHP-7.0/tests/lang/
H A Dbug25547.phpt17 $output = array();
18 ++$output[foo("bar")];
20 print_r($output);
/PHP-7.0/ext/standard/tests/general_functions/
H A Dbug49847.phpt12 exec('type ' . $f, $output);
14 exec("printf %4098d 1", $output);
16 var_dump($output);
H A Dbug70018.phpt11 $output = array();
16 exec(PHP_BINARY . " -n $test_fl", $output);
18 var_dump($output);
/PHP-7.0/ext/openssl/tests/
H A Dopenssl_csr_export_bacis.phpt29 var_dump(openssl_csr_export($csr, $output));
30 var_dump(openssl_csr_export($wrong, $output));
31 var_dump(openssl_csr_export($privkey, $output));
32 var_dump(openssl_csr_export(array(), $output));
33 var_dump(openssl_csr_export($csr, $output, false));
H A Dopenssl_pkey_export_basic.phpt15 var_dump(openssl_pkey_export($key, $output, NULL, $config_arg));
16 echo $output;
19 $details = openssl_pkey_get_details(openssl_pkey_get_private($output));
23 openssl_pkey_export($key, $output, 'passphrase', $config_arg);
25 $details = openssl_pkey_get_details(openssl_pkey_get_private($output, 'passphrase'));
/PHP-7.0/ext/standard/tests/file/windows_links/
H A Dbug48746.phpt14 $ret = @exec($cmd, $output, $return_val);
15 if (count($output) == 0) {
29 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
30 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
32 exec("mklink /j mklink_junction directory", $output, $ret_val);
H A Dbug48746_1.phpt14 $ret = @exec($cmd, $output, $return_val);
15 if (count($output) == 0) {
25 exec("mkdir " . $dirname, $output, $ret_val);
29 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
30 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
32 exec("mklink /j mklink_junction directory", $output, $ret_val);
/PHP-7.0/ext/standard/tests/http/
H A Dbug53198.phpt18 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
24 fseek($output, 0, SEEK_SET);
25 var_dump(stream_get_contents($output));
26 fseek($output, 0, SEEK_SET);
/PHP-7.0/ext/pdo/tests/
H A Dbug_69356.phpt20 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
21 This is a debug function, which dump directly the data on the normal output.
23 …utputs its result directly to the browser, the output-control functions can be used to capture the…
32 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
33 This is a debug function, which dump directly the data on the normal output.
35 …utputs its result directly to the browser, the output-control functions can be used to capture the…
/PHP-7.0/ext/spl/tests/
H A Dspl_iterator_getcallchildren.phpt17 $output = $test->callGetChildren();
19 $output = null;
22 var_dump($output);
/PHP-7.0/ext/oci8/tests/
H A Dbug71148.phpt56 // Test 2: Bind output parameter in a local function
61 echo "\nTest 2: Bind output parameter in a local function\n";
74 // Test 3: Bind output parameter within the same scope of execute
79 echo "\nTest 3: Bind output parameter within the same scope of execute\n";
92 // Test 4: Bind output parameter within the same scope of execute
93 $sql= "begin :output := bindfunc(:var1, :var2); end;";
97 echo "\nTest 4: Bind output parameter within the same scope of execute\n";
102 oci_bind_by_name($stmt, ":output", $cache3, 100);
171 Test 2: Bind output parameter in a local function
175 Test 3: Bind output parameter within the same scope of execute
[all …]
H A Dbug46994.phpt19 dbms_lob.writeappend(p1, 26, 'This should be the output.');
24 dbms_lob.writeappend(p1, 37, 'The output should be even longer now.');
76 string(26) "This should be the output."
78 string(37) "The output should be even longer now."
80 string(26) "This should be the output."
82 string(26) "This should be the output."
/PHP-7.0/ext/standard/tests/file/
H A Dbug69442.phpt16 exec($_SERVER['TEST_PHP_EXECUTABLE']." ".$tmpFile." 2>&1", $output);
17 $output = join("\n", $output);
20 if (strstr($output, "pty pseudo terminal not supported on this system") !== false) {
/PHP-7.0/ext/zlib/tests/
H A Dgzdeflate_variation1.phpt24 $output = gzdeflate($data);
25 var_dump( md5($output));
26 var_dump(md5(gzdeflate($output)));
/PHP-7.0/ext/standard/
H A Dpack.c102 *output++ = v[map[i]]; in php_pack()
247 zend_string *output; in PHP_FUNCTION() local
456 output = zend_string_alloc(outputsize, 0); in PHP_FUNCTION()
474 memcpy(&ZSTR_VAL(output)[outputpos], ZSTR_VAL(str), in PHP_FUNCTION()
511 ZSTR_VAL(output)[++outputpos] = 0; in PHP_FUNCTION() local
516 ZSTR_VAL(output)[outputpos] |= (n << nibbleshift); in PHP_FUNCTION() local
603 memcpy(&ZSTR_VAL(output)[outputpos], &v, sizeof(v)); in PHP_FUNCTION()
659 memset(&ZSTR_VAL(output)[outputpos], '\0', arg); in PHP_FUNCTION()
682 ZSTR_VAL(output)[outputpos] = '\0'; in PHP_FUNCTION() local
683 ZSTR_LEN(output) = outputpos; in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/xsl/tests/
H A Dbug54446.phpt2 Bug #54446 (Arbitrary file creation via libxslt 'output' extension)
23 <sax:output href="$outputfile" method="text">
25 </sax:output>
75 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
79 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
85 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
89 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…

Completed in 77 milliseconds

12345678910>>...24