/PHP-5.6/ext/phar/tests/files/ |
H A D | pear2coverage.phar.php | 116 $output->endElement(); 132 $output->endElement(); 192 $output->endElement(); 193 $output->endElement(); 234 $output->text("\n "); 250 $output->text("\n "); 252 $output->text("\n "); 258 $output->text("\n "); 260 $output->text("\n "); 303 $output->text("\n "); [all …]
|
/PHP-5.6/ext/standard/ |
H A D | crypt.c | 167 char *output; in php_crypt() local 173 efree(output); in php_crypt() 176 *result = estrdup(output); in php_crypt() 178 efree(output); in php_crypt() 182 char *output; in php_crypt() local 188 efree(output); in php_crypt() 191 *result = estrdup(output); in php_crypt() 193 efree(output); in php_crypt() 203 char output[PHP_MAX_SALT_LEN + 1]; in php_crypt() local 207 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt() [all …]
|
H A D | crypt_blowfish.c | 784 BF_encode(&output[7 + 22], data.binary.output, 23); in BF_crypt() 787 return output; in BF_crypt() 795 output[0] = '*'; in _crypt_output_magic() 796 output[1] = '0'; in _crypt_output_magic() 797 output[2] = '\0'; in _crypt_output_magic() 800 output[1] = '1'; in _crypt_output_magic() 905 output[0] = '$'; 906 output[1] = '2'; 908 output[3] = '$'; 911 output[6] = '$'; [all …]
|
H A D | crypt_blowfish.h | 22 extern int _crypt_output_magic(const char *setting, char *output, int size); 25 char *output, int size); 29 const char *input, int size, char *output, int output_size);
|
/PHP-5.6/tests/output/ |
H A D | ob_start_basic_004.phpt | 9 * Function is implemented in main/output.c 38 ----( chunk_size: -1, output append size: 1 )---- 41 ----( chunk_size: 0, output append size: 1 )---- 44 ----( chunk_size: 1, output append size: 1 )---- 55 ----( chunk_size: 2, output append size: 1 )---- 62 ----( chunk_size: 3, output append size: 1 )---- 67 ----( chunk_size: 4, output append size: 1 )---- 72 ----( chunk_size: 5, output append size: 1 )---- 76 ----( chunk_size: 6, output append size: 1 )---- 80 ----( chunk_size: 7, output append size: 1 )---- [all …]
|
H A D | ob_020.phpt | 2 output buffering - ob_list_handlers 25 [0] => default output handler 29 [0] => default output handler 30 [1] => default output handler 34 [0] => default output handler
|
H A D | ob_get_length_basic_001.phpt | 7 * Function is implemented in main/output.c 10 echo "No output buffers\n"; 25 echo "No output buffers\n"; 29 No output buffers 36 No output buffers
|
H A D | ob_start_basic_002.phpt | 18 return "I stole your output."; 25 // Use each of the above functions as an output buffering callback: 32 echo 'My output.'; 44 My output. 50 I stole your output.
|
H A D | ob_010.phpt | 2 output buffering - fatalism 13 Fatal error: print_r(): Cannot use output buffering in output buffering display handlers in %sob_01…
|
/PHP-5.6/ |
H A D | README.NEW-OUTPUT-API | 4 API adjustment to the old output control code: 9 Checking output control layers status: 13 Starting the default output handler: 36 Flushing one output buffer: 40 Flushing all output buffers: 44 Cleaning one output buffer: 48 Cleaning all output buffers: 52 Discarding one output buffer: 56 Discarding all output buffers: 72 Retrieving output buffers length: [all …]
|
/PHP-5.6/ext/posix/tests/ |
H A D | posix_getgrgid_variation.phpt | 92 valid output 95 valid output 98 valid output 101 valid output 104 valid output 111 valid output 118 valid output 125 valid output 132 valid output 139 valid output [all …]
|
H A D | posix_getpwuid_variation.phpt | 92 valid output 95 valid output 98 valid output 101 valid output 104 valid output 111 valid output 118 valid output 125 valid output 132 valid output 139 valid output [all …]
|
H A D | posix_getpgid_variation.phpt | 92 valid output 95 valid output 98 valid output 101 valid output 104 valid output 111 valid output 118 valid output 125 valid output 132 valid output 139 valid output [all …]
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | ob_start_closures.phpt | 2 Test ob_start() function : closures as output handlers 7 echo "*** Testing ob_start() : closures as output handlers ***\n"; 9 ob_start(function ($output) { 10 return 'Output (1): ' . $output; 13 ob_start(function ($output) { 14 return 'Output (2): ' . $output; 32 *** Testing ob_start() : closures as output handlers ***
|
H A D | bug50732.phpt | 2 Bug #50732 (exec() adds single byte twice to $output array) 5 exec("echo x", $output); 6 var_dump($output);
|
/PHP-5.6/ext/openssl/tests/ |
H A D | openssl_decrypt_basic.phpt | 17 $output = openssl_decrypt($encrypted, $method, $password, 0, $iv); 18 var_dump($output); 20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv); 21 var_dump($output); 25 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $i… 26 var_dump(rtrim($output));
|
H A D | openssl_x509_export_basic.phpt | 15 var_dump(openssl_x509_export($a, $output)); // read cert as a binary string 21 var_dump(strcmp($output, $a)); 22 var_dump(strcmp($output, $output2)); 23 var_dump(strcmp($output, $output3)); 24 var_dump(strcmp($output, $output4)); // different 25 var_dump(strcmp($output, $output5)); // different
|
/PHP-5.6/ext/mbstring/tests/ |
H A D | htmlent.phpt | 2 HTML input/output 21 // enable output encoding through output handler 23 // @... are must be decoded on input these are not reencoded on output. 24 // If you see @AB on output this means input encoding fails. 25 // If you do not see ä... on output this means output encoding fails.
|
/PHP-5.6/ext/dom/tests/ |
H A D | DOMNode_C14NFile_basic.phpt | 23 $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp'; 27 var_dump($node->C14NFile($output)); 28 $content = file_get_contents($output); 33 $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp'; 34 unlink($output);
|
/PHP-5.6/ext/standard/tests/array/ |
H A D | shuffle_variation2.phpt | 31 echo "\nThe output array is:\n"; 41 echo "\nThe output array is:\n"; 52 The output array is: 124 The output array is: 137 The output array is: 150 The output array is: 163 The output array is: 176 The output array is: 189 The output array is: 202 The output array is:
|
H A D | shuffle_variation4.phpt | 75 The output array is: 90 The output array is: 103 The output array is: 120 The output array is: 137 The output array is: 152 The output array is: 163 The output array is: 178 The output array is: 193 The output array is: 208 The output array is: [all …]
|
H A D | shuffle_variation3.phpt | 57 echo "\nThe output array is:\n"; 72 The output array is: 87 The output array is: 100 The output array is: 121 The output array is: 140 The output array is: 157 The output array is: 172 The output array is: 191 The output array is: 208 The output array is: [all …]
|
/PHP-5.6/ext/xmlwriter/tests/ |
H A D | xmlwriter_write_dtd_basic_001.phpt | 10 $output = xmlwriter_flush($xmlwriter, true); 11 print $output . PHP_EOL; 14 $output = xmlwriter_flush($xmlwriter, true); 15 print $output;
|
/PHP-5.6/ext/standard/tests/http/ |
H A D | server.inc | 14 * $output is a stream on which everything sent by clients is written to 16 function http_server($socket_string, array $files, &$output = null) { 25 if ($output === null) { 26 $output = tmpfile(); 27 if ($output === false) { 58 fwrite($output, b"\r\n"); 61 fwrite($output, b"$line\r\n"); 73 stream_copy_to_stream($sock, $output, $content_length);
|
/PHP-5.6/Zend/tests/ |
H A D | bug46811.phpt | 4 arg_separator.output=& 7 var_dump(ini_set("arg_separator.output", "")); 8 var_dump(ini_get("arg_separator.output"));
|