/PHP-5.6/ext/curl/tests/ |
H A D | curl_ftp_pasv.phpt | 23 // 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 D | shuffle_variation5.phpt | 68 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 D | ignore_errors.phpt | 20 $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 D | gzencode_variation1-win32.phpt | 35 $output = gzencode(gzencode($data)); 37 $back = gzdecode(gzdecode($output));
|
/PHP-5.6/tests/output/ |
H A D | ob_get_level_basic_001.phpt | 6 * Description: Return the nesting level of the output buffer 7 * Source code: main/output.c
|
H A D | ob_implicit_flush_error_001.phpt | 6 …* Description: Turn implicit flush on/off and is equivalent to calling flush() after every output … 7 * Source code: main/output.c
|
H A D | ob_clean_basic_001.phpt | 6 * Description: Clean (delete) the current output buffer 7 * Source code: main/output.c
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | ob_get_length_basic.phpt | 8 * Description: Return the length of the output buffer 9 * Source code: main/output.c
|
/PHP-5.6/ext/standard/tests/strings/ |
H A D | http_build_query_variation3.phpt | 22 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 D | show_source_variation1.phpt | 2 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 with its expected arguments and php output ***\n"</span>…
|
/PHP-5.6/ext/xmlwriter/tests/ |
H A D | 011.phpt | 26 $output = xmlwriter_flush($xw, true); 27 print $output;
|
H A D | OO_008.phpt | 26 $output = $xw->flush(true); 27 print $output;
|
H A D | xmlwriter_write_attribute_ns_error_001.phpt | 18 $output = xmlwriter_flush($xw, true); 19 print $output;
|
H A D | 012.phpt | 28 $output = xmlwriter_flush($xw, true); 29 print $output;
|
H A D | OO_010.phpt | 27 $output = $xw->flush(true); 28 print $output;
|
H A D | 008.phpt | 29 $output = xmlwriter_flush($xw, true); 30 print $output;
|
H A D | 009.phpt | 34 $output = xmlwriter_flush($xw, true); 35 print $output;
|
H A D | OO_009.phpt | 34 $output = $xw->flush(true); 35 print $output;
|
/PHP-5.6/sapi/cli/tests/ |
H A D | upload_2G.phpt | 42 $output = ""; 73 $output .= fgets($fp); 75 echo $output;
|
/PHP-5.6/ext/tidy/ |
H A D | tidy.c | 615 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 D | foreachLoop.005.phpt | 10 //--- Expected output: 14 //--- Actual output from php.net before 5.2.2:
|
/PHP-5.6/sapi/phpdbg/ |
H A D | .gitignore | 5 *.output
|
/PHP-5.6/ |
H A D | server-tests.php | 125 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 D | openssl_private_encrypt_basic.phpt | 24 openssl_public_decrypt($encrypted, $output, $pubkey); 25 var_dump($output);
|
H A D | openssl_public_encrypt_basic.phpt | 24 openssl_private_decrypt($encrypted, $output, $privkey); 25 var_dump($output);
|