Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-8.1/ext/standard/tests/strings/
H A Dsetlocale_variation2.phpt8 exec("locale -a", $output, $exit_code);
26 // start the buffering of next command to internal output buffer
32 // get the contents from the internal output buffer
35 // fflush and end the output buffering to internal output buffer
H A Dmd5_file.phpt2 Test md5_file() function with ASCII output and raw binary output
51 /* Normal operation with hexadecimal output */
55 /* Normal operation with raw binary output */
/PHP-8.1/ext/pdo_mysql/tests/
H A Dpdo_mysql_phpinfo.phpt2 MySQL PDO phpinfo() output
25 printf("[001] Cannot find MySQL PDO driver line in phpinfo() output\n");
/PHP-8.1/ext/zlib/tests/
H A Dgzencode_variation1.phpt25 $output = gzencode($data);
26 var_dump(bin2hex(gzencode($output)));
/PHP-8.1/ext/openssl/tests/
H A Dbug71917.phpt20 openssl_open($sealed, $output, $envelope, $privateKey, 'rc4');
21 var_dump($output === 'plaintext');
H A Dopenssl_open_basic.phpt14 openssl_open($sealed, $output, $ekeys[0], $priv_key, $method);
15 var_dump($output);
/PHP-8.1/ext/soap/tests/
H A Dbug68361.phpt53 <output message="tns:getEmployeeResponse"/>
57 <output message="tns:getUserResponse"/>
67 <output>
69 </output>
76 <output>
78 </output>
/PHP-8.1/ext/soap/tests/bugs/
H A Dbug40609.wsdl26output xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getPriceResponseMessa…
H A Dbug34453.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
H A Dbug29795.wsdl20 <output message="tns:GetPriceResponse"/>
30 <output>
32 </output>
H A Dbug29839.wsdl22 <output message="tns:EchoStringResponse"/>
32 <output>
34 </output>
/PHP-8.1/ext/xmlwriter/tests/
H A Dxmlwriter_write_attribute_ns_basic_001.phpt18 $output = xmlwriter_flush($xw, true);
19 print $output;
H A D011.phpt22 $output = xmlwriter_flush($xw, true);
23 print $output;
H A DOO_008.phpt23 $output = $xw->flush(true);
24 print $output;
H A DOO_010.phpt23 $output = $xw->flush(true);
24 print $output;
/PHP-8.1/ext/xsl/tests/
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
12 print "No or more than one xsl:output/@indent found";
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
12 print "No or more than one xsl:output/@encoding found";
/PHP-8.1/ext/date/tests/
H A Dbug51819.phpt31 var_dump('this should be the only output');
34 string(30) "this should be the only output"
/PHP-8.1/ext/standard/tests/array/
H A Dshuffle_variation5.phpt63 echo "\nThe output array is:\n";
69 echo "\nThe output array is:\n";
80 The output array is:
99 The output array is:
/PHP-8.1/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-8.1/ext/tidy/
H A Dtidy.c396 TidyBuffer output; in php_tidy_quick_repair() local
401 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0); in php_tidy_quick_repair()
513 TidyBuffer output; in tidy_doc_cast_handler() local
534 if (output.size) { in tidy_doc_cast_handler()
535 ZVAL_STRINGL(out, (char *) output.bp, output.size-1); in tidy_doc_cast_handler()
590 TidyBuffer output; in tidy_doc_update_properties() local
596 if (output.size) { in tidy_doc_update_properties()
600 ZVAL_STRINGL(&temp, (char*)output.bp, output.size-1); in tidy_doc_update_properties()
1033 TidyBuffer output; in PHP_FUNCTION() local
1038 FIX_BUFFER(&output); in PHP_FUNCTION()
[all …]
/PHP-8.1/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-8.1/ext/hash/
H A Dhash_md.c80 static void Encode(unsigned char *output, uint32_t *input, unsigned int len) in Encode() argument
85 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
86 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
87 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
88 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
97 static void Decode(uint32_t *output, const unsigned char *input, unsigned int len) in Decode() argument
102 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
349 PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) in PHP_MD2Final()
355 memcpy(output, context->state, 16); in PHP_MD2Final()
/PHP-8.1/ext/standard/tests/http/
H A Dbug65634.phpt25 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
28 fseek($output, 0, SEEK_SET);
29 echo stream_get_contents($output);
H A Dignore_errors.phpt20 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
34 fseek($output, 0, SEEK_SET);
35 var_dump(stream_get_contents($output));
36 fseek($output, 0, SEEK_SET);

Completed in 31 milliseconds

12345678910>>...23