Home
last modified time | relevance | path

Searched refs:output (Results 101 – 125 of 610) sorted by relevance

12345678910>>...25

/PHP-7.2/tests/output/
H A Dob_get_contents_error_001.phpt8 * Description: Return the contents of the output buffer
9 * Source code: main/output.c
H A Dob_get_level_error_001.phpt6 * Description: Return the nesting level of the output buffer
7 * Source code: main/output.c
H A Dob_flush_error_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
7 * Source code: main/output.c
H A Dob_get_level_basic_001.phpt6 * Description: Return the nesting level of the output buffer
7 * Source code: main/output.c
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug29795.wsdl20 <output message="tns:GetPriceResponse"/>
30 <output>
32 </output>
H A Dbug29839.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
H A Dbug34453.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
/PHP-7.2/ext/standard/tests/http/
H A Dbug65634.phpt25 $pid = http_server('tcp://127.0.0.1:12342', $responses, $output);
28 fseek($output, 0, SEEK_SET);
29 echo stream_get_contents($output);
H A Dignore_errors.phpt20 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
34 fseek($output, 0, SEEK_SET);
35 var_dump(stream_get_contents($output));
36 fseek($output, 0, SEEK_SET);
/PHP-7.2/ext/xmlwriter/tests/
H A Dxmlwriter_write_attribute_ns_basic_001.phpt18 $output = xmlwriter_flush($xw, true);
19 print $output;
/PHP-7.2/ext/zlib/tests/
H A Dgzencode_variation1.phpt27 $output = gzencode($data);
28 var_dump(bin2hex(gzencode($output)));
H A Dgzencode_variation1-win32.phpt35 $output = gzencode(gzencode($data));
37 $back = gzdecode(gzdecode($output));
/PHP-7.2/ext/xsl/tests/
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
12 print "No or more than one xsl:output/@encoding found";
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
12 print "No or more than one xsl:output/@indent found";
/PHP-7.2/ext/standard/tests/math/
H A Dmt_rand_value.phpt2 Test mt_rand() output
34 * Note that the output will be different from the original mt19937ar.c,
/PHP-7.2/ext/openssl/tests/
H A Dopenssl_open_basic.phpt13 openssl_open($sealed, $output, $ekeys[0], $priv_key);
14 var_dump($output);
H A DCertificateGenerator.inc74 $output = '';
75 openssl_x509_export($this->ca, $output);
77 return $output;
/PHP-7.2/ext/standard/tests/misc/
H A Dexec_basic1.phpt11 var_dump(exec($cmd, $output));
12 var_dump($output);
/PHP-7.2/ext/imap/tests/
H A Dimap_binary_basic.phpt21 echo "Encode a string which results in more than 60 charters of output\n";
22 $str = 'This is a long string with results in more than 60 characters of output';
42 Encode a string which results in more than 60 charters of output
/PHP-7.2/ext/curl/tests/
H A Dcurl_ftp_pasv.phpt23 // enable below to get the output in verbose mode.
26 /* Without enabling SKIP_PASV_IP flag, the following output will be seen..
32 /* After enabling SKIP_PASV_IP flag, the following output will be seen..
/PHP-7.2/ext/standard/tests/array/
H A Dshuffle_variation5.phpt68 echo "\nThe output array is:\n";
74 echo "\nThe output array is:\n";
85 The output array is:
104 The output array is:
/PHP-7.2/ext/standard/tests/strings/
H A Dhttp_build_query_variation3.phpt18 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC1738) . PHP_…
19 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC3986);
/PHP-7.2/ext/standard/tests/general_functions/
H A Dob_get_length_basic.phpt8 * Description: Return the length of the output buffer
9 * Source code: main/output.c
/PHP-7.2/ext/tidy/
H A Dtidy.c628 TidyBuffer output; in php_tidy_quick_repair() local
633 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0); in php_tidy_quick_repair()
745 TidyBuffer output; in tidy_doc_cast_handler() local
765 ZVAL_STRINGL(out, (char *) output.bp, output.size ? output.size-1 : 0); in tidy_doc_cast_handler()
816 TidyBuffer output; in tidy_doc_update_properties() local
819 tidyBufInit(&output); in tidy_doc_update_properties()
822 if (output.size) { in tidy_doc_update_properties()
826 ZVAL_STRINGL(&temp, (char*)output.bp, output.size-1); in tidy_doc_update_properties()
1251 TidyBuffer output; in PHP_FUNCTION() local
1256 FIX_BUFFER(&output); in PHP_FUNCTION()
[all …]
/PHP-7.2/
H A Dserver-tests.php117 function generate_diff($wanted,$output) argument
120 $o = explode("\n", $output);
1198 if (!$output) return NULL;
1200 print "SKIPIF: [$output]\n";
1201 if (preg_match("/^skip/i", $output)){
1402 $output = trim($out);
1403 $output = preg_replace('/\r\n/',"\n",$output);
1498 $output='';
1500 $output .= "$k: {$headers[$k]}\n";
1548 file_put_contents($logname,$output);
[all …]

Completed in 58 milliseconds

12345678910>>...25