Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-5.6/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-5.6/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-5.6/ext/standard/tests/http/
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-5.6/ext/zlib/tests/
H A Dgzencode_variation1-win32.phpt35 $output = gzencode(gzencode($data));
37 $back = gzdecode(gzdecode($output));
/PHP-5.6/tests/output/
H A Dob_get_level_basic_001.phpt6 * Description: Return the nesting level of the output buffer
7 * Source code: main/output.c
H A Dob_implicit_flush_error_001.phpt6 …* Description: Turn implicit flush on/off and is equivalent to calling flush() after every output
7 * Source code: main/output.c
H A Dob_clean_basic_001.phpt6 * Description: Clean (delete) the current output buffer
7 * Source code: main/output.c
/PHP-5.6/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-5.6/ext/standard/tests/strings/
H A Dhttp_build_query_variation3.phpt22 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC1738) . PHP_…
23 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC3986);
H A Dshow_source_variation1.phpt2 Test function show_source() by calling it with its expected arguments and php output, more test for…
8 echo "*** Test by calling method or function with its expected arguments and php output ***\n";
23 *** Test by calling method or function with its expected arguments and php output ***
26 …n&nbsp;with&nbsp;its&nbsp;expected&nbsp;arguments&nbsp;and&nbsp;php&nbsp;output&nbsp;***\n"</span>…
/PHP-5.6/ext/xmlwriter/tests/
H A D011.phpt26 $output = xmlwriter_flush($xw, true);
27 print $output;
H A DOO_008.phpt26 $output = $xw->flush(true);
27 print $output;
H A Dxmlwriter_write_attribute_ns_error_001.phpt18 $output = xmlwriter_flush($xw, true);
19 print $output;
H A D012.phpt28 $output = xmlwriter_flush($xw, true);
29 print $output;
H A DOO_010.phpt27 $output = $xw->flush(true);
28 print $output;
H A D008.phpt29 $output = xmlwriter_flush($xw, true);
30 print $output;
H A D009.phpt34 $output = xmlwriter_flush($xw, true);
35 print $output;
H A DOO_009.phpt34 $output = $xw->flush(true);
35 print $output;
/PHP-5.6/sapi/cli/tests/
H A Dupload_2G.phpt42 $output = "";
73 $output .= fgets($fp);
75 echo $output;
/PHP-5.6/ext/tidy/
H A Dtidy.c615 TidyBuffer output; in php_tidy_quick_repair() local
620 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0, 1); in php_tidy_quick_repair()
747 TidyBuffer output; in tidy_doc_cast_handler() local
767 ZVAL_STRINGL(out, (char *) output.bp, output.size ? output.size-1 : 0, 1); in tidy_doc_cast_handler()
818 TidyBuffer output; in tidy_doc_update_properties() local
821 tidyBufInit(&output); in tidy_doc_update_properties()
824 if (output.size) { in tidy_doc_update_properties()
829 ZVAL_STRINGL(temp, (char*)output.bp, output.size-1, TRUE); in tidy_doc_update_properties()
1258 TidyBuffer output; in PHP_FUNCTION() local
1263 FIX_BUFFER(&output); in PHP_FUNCTION()
[all …]
/PHP-5.6/tests/lang/
H A DforeachLoop.005.phpt10 //--- Expected output:
14 //--- Actual output from php.net before 5.2.2:
/PHP-5.6/sapi/phpdbg/
H A D.gitignore5 *.output
/PHP-5.6/
H A Dserver-tests.php125 function generate_diff($wanted,$output) argument
128 $o = explode("\n", $output);
1211 if (!$output) return NULL;
1213 print "SKIPIF: [$output]\n";
1214 if (preg_match("/^skip/i", $output)){
1415 $output = trim($out);
1416 $output = preg_replace('/\r\n/',"\n",$output);
1511 $output='';
1513 $output .= "$k: {$headers[$k]}\n";
1561 file_put_contents($logname,$output);
[all …]
/PHP-5.6/ext/openssl/tests/
H A Dopenssl_private_encrypt_basic.phpt24 openssl_public_decrypt($encrypted, $output, $pubkey);
25 var_dump($output);
H A Dopenssl_public_encrypt_basic.phpt24 openssl_private_decrypt($encrypted, $output, $privkey);
25 var_dump($output);

Completed in 49 milliseconds

12345678910>>...23