/PHP-7.1/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-7.1/ext/standard/ |
H A D | crypt.c | 127 char *output; in php_crypt() local 133 efree(output); in php_crypt() 136 result = zend_string_init(output, strlen(output), 0); in php_crypt() 138 efree(output); in php_crypt() 142 char *output; in php_crypt() local 148 efree(output); in php_crypt() 151 result = zend_string_init(output, strlen(output), 0); in php_crypt() 153 efree(output); in php_crypt() 160 char output[PHP_MAX_SALT_LEN + 1]; in php_crypt() local 164 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-7.1/tests/output/ |
H A D | ob_start_basic_004.phpt | 9 * Function is implemented in main/output.c 37 ----( chunk_size: -1, output append size: 1 )---- 40 ----( chunk_size: 0, output append size: 1 )---- 43 ----( chunk_size: 1, output append size: 1 )---- 54 ----( chunk_size: 2, output append size: 1 )---- 61 ----( chunk_size: 3, output append size: 1 )---- 66 ----( chunk_size: 4, output append size: 1 )---- 71 ----( chunk_size: 5, output append size: 1 )---- 75 ----( chunk_size: 6, output append size: 1 )---- 79 ----( 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.
|
/PHP-7.1/ |
H A D | README.NEW-OUTPUT-API | 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: 68 Retrieving output buffers contents: 72 Retrieving output buffers length: [all …]
|
/PHP-7.1/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-7.1/ext/posix/tests/ |
H A D | posix_getgrgid_variation.phpt | 93 valid output 96 valid output 101 valid output 104 valid output 107 valid output 114 valid output 121 valid output 128 valid output 135 valid output 142 valid output [all …]
|
H A D | posix_getpwuid_variation.phpt | 93 valid output 96 valid output 101 valid output 104 valid output 107 valid output 114 valid output 121 valid output 128 valid output 135 valid output 142 valid output [all …]
|
H A D | posix_getpgid_variation.phpt | 93 valid output 96 valid output 101 valid output 104 valid output 107 valid output 114 valid output 121 valid output 128 valid output 135 valid output 142 valid output [all …]
|
/PHP-7.1/ext/openssl/tests/ |
H A D | openssl_pkcs12_export_basic.phpt | 20 var_dump(openssl_pkcs12_export($cert, $output, $priv, $pass)); // read certs as a string 21 var_dump(openssl_pkcs12_read($output, $opts, $pass)); 22 var_dump(openssl_pkcs12_export($cert_path, $output, $priv_path, $pass)); // read certs from a filen… 23 var_dump(openssl_pkcs12_read($output, $opts, $pass)); 24 var_dump(openssl_pkcs12_export($cert_res, $output, $priv_res, $pass)); // read certs from a resource 25 var_dump(openssl_pkcs12_read($output, $opts, $pass)); 27 var_dump(openssl_pkcs12_read($output, $opts, $pass)); 31 var_dump(openssl_pkcs12_export($invalid, $output, $invalid, $pass)); 32 var_dump(openssl_pkcs12_export($invalid_path, $output, $invalid_path, $pass)); 33 var_dump(openssl_pkcs12_export($priv_res, $output, $cert_res, $pass)); [all …]
|
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)); 29 $output = openssl_decrypt($encrypted, "bf-ecb", $password, OPENSSL_DONT_ZERO_PAD_KEY); 30 var_dump($output);
|
H A D | openssl_x509_export_basic.phpt | 15 var_dump(openssl_x509_export($a, $output)); // read cert as a binary string 25 var_dump(strcmp($output, $a)); 26 var_dump(strcmp($output, $output2)); 27 var_dump(strcmp($output, $output3)); 28 var_dump(strcmp($output, $output4)); // different 29 var_dump(strcmp($output, $output5)); // different
|
/PHP-7.1/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-7.1/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-7.1/sapi/phpdbg/ |
H A D | create-test.php | 68 $input = $output = ""; variable 91 $output .= $c = fgetc($pipes[1]); 116 $output = str_replace("string(".strlen($file).") \"$file\"", 'string(%d) "%s"', $output); variable 117 $output = str_replace($file, "%s", $output); variable 126 $output
|
/PHP-7.1/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 …]
|
/PHP-7.1/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-7.1/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-7.1/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"));
|