Home
last modified time | relevance | path

Searched refs:output (Results 51 – 75 of 546) sorted by relevance

12345678910>>...22

/PHP-8.0/ext/pdo/tests/
H A Dbug_69356.phpt21 …Dumps the information contained by a prepared statement directly on the output. It will provide th…
22 This is a debug function, which dump directly the data on the normal output.
24 …utputs its result directly to the browser, the output-control functions can be used to capture the…
33 …Dumps the information contained by a prepared statement directly on the output. It will provide th…
34 This is a debug function, which dump directly the data on the normal output.
36 …utputs its result directly to the browser, the output-control functions can be used to capture the…
/PHP-8.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);
169 Test 2: Bind output parameter in a local function
173 Test 3: Bind output parameter within the same scope of execute
[all …]
/PHP-8.0/ext/zlib/tests/
H A Dgzcompress_basic1.phpt29 $output = gzcompress($data, $i);
30 var_dump(md5($output));
31 var_dump(strcmp(gzuncompress($output), $data));
37 $output = gzcompress($smallstring, $i);
38 var_dump(bin2hex($output));
39 var_dump(strcmp(gzuncompress($output), $smallstring));
H A Dgzdeflate_basic1.phpt29 $output = gzdeflate($data, $i);
30 var_dump(md5($output));
31 var_dump(strcmp(gzinflate($output), $data));
37 $output = gzdeflate($smallstring, $i);
38 var_dump(bin2hex($output));
39 var_dump(strcmp(gzinflate($output), $smallstring));
H A Dgzencode_basic1.phpt29 $output = gzencode($data, $i);
32 $output[9] = "\x00";
34 var_dump(md5($output));
40 $output = gzencode($smallstring, $i);
43 $output[9] = "\x00";
45 var_dump(md5($output));
/PHP-8.0/Zend/tests/
H A Dget_defined_vars.phpt42 echo "\n*** Checking for output when get_defined_vars called in local function ***\n";
46 echo "\n*** Checking for output when get_defined_vars called in function of a class ***\n";
49 echo "\n*** Checking for output when get_defined_vars called in nested functions ***\n";
102 *** Checking for output when get_defined_vars called in local function ***
108 *** Checking for output when get_defined_vars called in function of a class ***
114 *** Checking for output when get_defined_vars called in nested functions ***
/PHP-8.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>
74 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
78 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
84 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
88 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
H A Dbug54446_with_ini.phpt2 Bug #54446 (Arbitrary file creation via libxslt 'output' extension with php.ini setting)
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…
H A Dxslt002.phpt9 // changing output method to html
11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method");
13 print "No or more than one xsl:output/@method found";
/PHP-8.0/ext/mbstring/tests/
H A Dmb_http_output.phpt11 // Set HTTP output encoding to ASCII
17 // Set HTTP output encoding to SJIS
23 // Set HTTP output encoding to JIS
29 // Set HTTP output encoding to UTF8
35 // Set HTTP output encoding to EUC-JP
H A Dmb_output_handler_euc_jp.phpt14 $output = ob_get_clean();
16 var_dump( $output );
/PHP-8.0/ext/standard/tests/streams/
H A Dbug77069.phpt19 // Send this record output.
46 $output = '';
48 $output .= fread($stream, 16);
52 echo $output;
/PHP-8.0/ext/standard/tests/http/
H A Dbug79265.phpt15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
27 fseek($output, 0, SEEK_SET);
28 echo stream_get_contents($output);
H A Dbug79265_2.phpt15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
26 fseek($output, 0, SEEK_SET);
27 echo stream_get_contents($output);
H A Dbug48929.phpt19 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
25 fseek($output, 0, SEEK_SET);
26 var_dump(stream_get_contents($output));
27 fseek($output, 0, SEEK_SET);
H A Dbug67430.phpt25 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
28 fseek($output, 0, SEEK_SET);
29 echo stream_get_contents($output);
/PHP-8.0/tests/output/
H A Dbug65593.phpt12 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug6…
/PHP-8.0/ext/standard/
H A Dpack.c91 *output++ = v[map[i]]; in php_pack()
230 zend_string *output; in PHP_FUNCTION() local
448 output = zend_string_alloc(outputsize, 0); in PHP_FUNCTION()
466 memcpy(&ZSTR_VAL(output)[outputpos], ZSTR_VAL(str), in PHP_FUNCTION()
503 ZSTR_VAL(output)[++outputpos] = 0; in PHP_FUNCTION() local
508 ZSTR_VAL(output)[outputpos] |= (n << nibbleshift); in PHP_FUNCTION() local
595 memcpy(&ZSTR_VAL(output)[outputpos], &v, sizeof(v)); in PHP_FUNCTION()
651 memset(&ZSTR_VAL(output)[outputpos], '\0', arg); in PHP_FUNCTION()
674 ZSTR_VAL(output)[outputpos] = '\0'; in PHP_FUNCTION() local
675 ZSTR_LEN(output) = outputpos; in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/standard/tests/filters/
H A Dread.phpt9 $output = 0;
14 $output = 1;
19 $output = 1;
21 return $output ? PSFS_PASS_ON : PSFS_FEED_ME;
/PHP-8.0/ext/standard/tests/misc/
H A Dexec_basic1.phpt12 var_dump(exec($cmd, $output));
17 var_dump(system($cmd, $output));
22 var_dump(passthru($cmd, $output));
/PHP-8.0/build/
H A DMakefile.gcov34 $(LTP) --capture --no-external --directory . --output-file $@
36 $(LTP) --output-file $@ --remove $@ '*/<stdout>' $(LCOV_EXCLUDES)
40 $(LTP_GENHTML) --legend --output-directory lcov_html/ --title "PHP Code Coverage" php_lcov.info
/PHP-8.0/ext/soap/tests/
H A Dclassmap.wsdl27 <output message="tns:dotestResponse"/>
31 <output message="tns:dotest2Response"/>
41 <output>
43 </output>
50 <output>
52 </output>
/PHP-8.0/ext/standard/tests/
H A Dbug79821.phpt6 foreach (['var_dump', 'debug_zval_dump', 'var_export'] as $output) {
15 $output($foo[0]);
/PHP-8.0/ext/fileinfo/tests/
H A Dfinfo_phpinfo_basic.phpt12 $output = ob_get_clean();
14 var_dump(preg_match("/fileinfo support => enabled/", $output));
/PHP-8.0/ext/standard/tests/file/windows_links/
H A Dbug48746_2.phpt19 exec("mkdir " . $dirname, $output, $ret_val);
23 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
24 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
26 exec("mklink /j mklink_junction directory", $output, $ret_val);

Completed in 66 milliseconds

12345678910>>...22