Home
last modified time | relevance | path

Searched refs:output (Results 126 – 150 of 494) sorted by relevance

12345678910>>...20

/PHP-5.4/ext/mysqli/tests/
H A Dmysqli_select_db.phpt76 $output = ob_get_contents();
78 if (!stristr($output, "1049") && !stristr($output, "1044") && !stristr($output, "1045")) {
82 echo $output;
/PHP-5.4/tests/output/
H A Dob_001.phpt2 output buffering - nothing
H A Dob_implicit_flush_basic_002.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_flush_basic_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_002.phpt2 output buffering - ob_start
H A Dob_007.phpt2 output buffering - ob_get_clean
H A Dob_008.phpt2 output buffering - ob_get_contents
H A Dob_004.phpt2 output buffering - ob_clean
H A Dob_006.phpt2 output buffering - ob_end_flush
H A Dob_009.phpt2 output buffering - ob_get_flush
H A Dob_003.phpt2 output buffering - ob_flush
H A Dob_005.phpt2 output buffering - ob_end_clean
/PHP-5.4/ext/xmlwriter/tests/
H A D007.phpt29 $output = xmlwriter_flush($xw, true);
30 print $output;
H A DOO_007.phpt30 $output = $xw->flush(true);
31 print $output;
/PHP-5.4/ext/standard/tests/strings/
H A Dmd5_file.phpt2 Test md5_file() function with ASCII output and raw binary output
61 /* Normal operation with hexadecimal output */
65 /* Normal operation with raw binary output */
H A Dbug26819.phpt2 Bug #26819 (http_build_query() crash on empty output)
H A Dsetlocale_basic3.phpt29 // start the buffering of next command to internal output buffer
35 // get the contents from the internal output buffer
38 // fflush and end the output buffering to internal output buffer
/PHP-5.4/ext/standard/tests/url/
H A Dbase64_decode_variation_001.phpt81 $output = base64_decode($value, $strict);
83 if (is_string($output)) {
84 var_dump(bin2hex($output));
86 var_dump($output);
/PHP-5.4/ext/standard/tests/file/windows_links/
H A Dbug48746_3.phpt24 exec("mkdir " . $dirname, $output, $ret_val);
26 exec(get_junction()." junction directory", $output, $ret_val);
/PHP-5.4/ext/openssl/tests/
H A D017.phpt13 var_dump(openssl_private_decrypt($encrypted, $output, $privkey));
14 var_dump($output);
/PHP-5.4/ext/hash/
H A Dhash_sha.c46 output[j] = (unsigned char) ((input[i] >> 24) & 0xff); in SHAEncode32()
47 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff); in SHAEncode32()
48 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff); in SHAEncode32()
49 output[j + 3] = (unsigned char) (input[i] & 0xff); in SHAEncode32()
737 output[j] = (unsigned char) ((input[i] >> 56) & 0xff); in SHAEncode64()
738 output[j + 1] = (unsigned char) ((input[i] >> 48) & 0xff); in SHAEncode64()
739 output[j + 2] = (unsigned char) ((input[i] >> 40) & 0xff); in SHAEncode64()
740 output[j + 3] = (unsigned char) ((input[i] >> 32) & 0xff); in SHAEncode64()
743 output[j + 6] = (unsigned char) ((input[i] >> 8) & 0xff); in SHAEncode64()
744 output[j + 7] = (unsigned char) (input[i] & 0xff); in SHAEncode64()
[all …]
/PHP-5.4/ext/standard/
H A Dsha1.c372 static void SHA1Encode(output, input, len) in SHA1Encode() argument
373 unsigned char *output; in SHA1Encode()
380 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
381 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
382 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
383 output[j + 3] = (unsigned char) (input[i] & 0xff);
392 static void SHA1Decode(output, input, len) in SHA1Decode() argument
393 php_uint32 *output; in SHA1Decode()
400 output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
/PHP-5.4/ext/zlib/tests/
H A Dgzseek_variation7.phpt28 echo "\nreading the output file\n";
45 reading the output file
/PHP-5.4/Zend/tests/
H A Dbug60978.phpt6 exec($php . ' -n -r "exit(2);"', $output, $exit_code);
/PHP-5.4/ext/xmlwriter/
H A Dphp_xmlwriter.h39 xmlBufferPtr output; member

Completed in 34 milliseconds

12345678910>>...20