/PHP-8.3/ext/standard/tests/file/ |
H A D | bug51094.phpt | 6 $ini = parse_ini_string('ini="ini;raw"', false, INI_SCANNER_RAW); 8 $ini = parse_ini_string('ini="ini;raw', false, INI_SCANNER_RAW); 10 $ini = parse_ini_string('ini=ini;raw', false, INI_SCANNER_RAW); 12 $ini = parse_ini_string('ini=ini"raw', false, INI_SCANNER_RAW); 18 string(7) "ini;raw" 21 string(7) "ini"raw"
|
/PHP-8.3/ext/hash/tests/ |
H A D | hash_pbkdf2_basic.phpt | 10 echo "sha1(raw): " . bin2hex(hash_pbkdf2('sha1', 'password', 'salt', 1, 20, TRUE))."\n"; 12 echo "sha1(rounds)(raw): " . bin2hex(hash_pbkdf2('sha1', 'passwordPASSWORDpassword', 'saltSALTsaltS… 15 echo "sha256(raw): " . bin2hex(hash_pbkdf2('sha256', 'password', 'salt', 1, 20, TRUE))."\n"; 17 echo "sha256(rounds)(raw): " . bin2hex(hash_pbkdf2('sha256', 'passwordPASSWORDpassword', 'saltSALTs… 24 sha1(raw): 0c60c80f961f0e71f3a9b524af6012062fe037a6 26 sha1(rounds)(raw): 3d2eec4fe41c849b80c8d83662c0e44a8b291a964cf2f07038 29 sha256(raw): 120fb6cffcf8b32c43e7225256c4f837a86548c9 31 sha256(rounds)(raw): 348c89dbcbd32b2f32d814b8116e84cf2b17347ebc1800181c4e2a1fb8dd53e1c635518c7dac47…
|
H A D | hash_file_basic1.phpt | 52 echo "adler32(raw): " . bin2hex(hash_file('adler32', $file, TRUE)) . "\n"; 53 echo "md5(raw): " . bin2hex(hash_file('md5', $file, TRUE)). "\n"; 54 echo "sha256(raw): " . bin2hex(hash_file('sha256', $file, TRUE)). "\n"; 85 adler32(raw): ff87222e 86 md5(raw): 704bf818448f5bbb94061332d2c889aa 87 sha256(raw): a0f5702fa5d3670b80033d668e8732b70550392abb53841355447f8bb0f72245
|
H A D | hash_hmac_basic.phpt | 27 echo "md5(raw): " . bin2hex(hash_hmac('md5', $content, $key, TRUE)) . "\n"; 28 echo "sha256(raw): " . bin2hex(hash_hmac('sha256', $content, $key, TRUE)) . "\n"; 49 md5(raw): 2a632783e2812cf23de100d7d6a463ae 50 sha256(raw): 49bde3496b9510a17d0edd8a4b0ac70148e32a1d51e881ec76faa96534125838
|
H A D | hash_hmac_file_basic.phpt | 48 echo "md5(raw): " . bin2hex(hash_hmac_file('md5', $file, $key, TRUE)). "\n"; 49 echo "sha256(raw): " . bin2hex(hash_hmac_file('sha256', $file, $key, TRUE)). "\n"; 72 md5(raw): 8bddf39dd1c566c27acc7fa85ec36acf 73 sha256(raw): 9135286ca4c84dec711e4b831f6cd39e672e5ff93d011321274eb76733cc1e40
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | htmlent_encoding.phpt | 11 function convertToEntities($raw, $htmlent) { 12 $converted = mb_convert_encoding($raw, 'HTML-ENTITIES', 'UTF-8'); 14 …die('Expected ' . bin2hex($raw) . ' to convert to "' . $htmlent . '"; actually got "' . $converted… 17 function convertFromEntities($raw, $htmlent) { 19 if ($converted !== $raw) 20 …die('Expected "' . $htmlent . '" to convert to ' . bin2hex($raw) . '; actually got ' . bin2hex($co… 23 function testConversion($raw, $htmlent) { 24 convertToEntities($raw, $htmlent); 25 convertFromEntities($raw, $htmlent);
|
H A D | uuencode_encoding.phpt | 13 function testConversion($uuencode, $raw) { 15 if ($converted !== $raw) 16 …die('Expected "' . $uuencode . '" to convert to ' . bin2hex($raw) . '; actually got ' . bin2hex($c… 17 $converted = mb_convert_encoding($raw, 'UUENCODE', '8bit'); 19 …die('Expected ' . bin2hex($raw) . ' to convert to "' . $uuencode . '"; actually got "' . $converte…
|
H A D | base64_encoding.phpt | 11 function testConversion($raw, $base64) { 12 $converted = mb_convert_encoding($raw, 'Base64', '8bit'); 14 …die('Expected ' . bin2hex($raw) . ' to convert to "' . $base64 . '"; actually got "' . $converted … 16 if ($converted !== $raw) 17 …die('Expected "' . $base64 . '" to convert to ' . bin2hex($raw) . '; actually got ' . bin2hex($con…
|
H A D | qprint_encoding.phpt | 11 function testConversion($raw, $qprint) { 12 $converted = mb_convert_encoding($raw, 'QPrint', '8bit'); 14 …die('Expected ' . bin2hex($raw) . ' to convert to "' . $qprint . '"; actually got "' . $converted … 16 if ($converted !== str_replace("\n", "\r\n", $raw)) 17 …die('Expected "' . $qprint . '" to convert to ' . bin2hex($raw) . '; actually got ' . bin2hex($con…
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | sha1_basic.phpt | 9 echo "\n-- Without raw argument --\n"; 18 echo "\n-- With raw == false --\n"; 27 echo "\n-- With raw == true --\n"; 40 -- Without raw argument -- 49 -- With raw == false -- 58 -- With raw == true --
|
H A D | md5_basic2.phpt | 2 Test md5() function : basic functionality - with raw output 5 echo "*** Testing md5() : basic functionality - with raw output***\n"; 21 *** Testing md5() : basic functionality - with raw output***
|
H A D | strncmp_variation7.phpt | 9 /* A binary function should not expect a null terminated string, and it should treat input as a raw…
|
H A D | strncasecmp_variation7.phpt | 9 /* A binary function should not expect a null terminated string, and it should treat input as a raw…
|
H A D | md5_file.phpt | 2 Test md5_file() function with ASCII output and raw binary output 55 /* Normal operation with raw binary output */
|
/PHP-8.3/tests/strings/ |
H A D | 001.phpt | 87 $raw = ' !"#$%&\'()*+,-./0123456789:;<=>?' 93 $encoded = rawurlencode($raw); 106 if ($decoded == $raw) { 113 $encoded = urlencode($raw); 126 if ($decoded == $raw) { 133 $raw = "a.\\+*?" . chr(91) . "^" . chr(93) . "b\$c"; 134 $quoted = quotemeta($raw);
|
/PHP-8.3/ext/standard/tests/network/ |
H A D | dns_get_record_error_conditions.phpt | 30 dns_get_record(): Argument #2 ($type) must be between 1 and 65535 when argument #5 ($raw) is true 31 dns_get_record(): Argument #2 ($type) must be between 1 and 65535 when argument #5 ($raw) is true
|
/PHP-8.3/ext/standard/ |
H A D | dns_win32.c | 144 static void php_parserr(PDNS_RECORD pRec, int type_to_fetch, int store, bool raw, zval *subarray) in php_parserr() argument 168 if (raw) { in php_parserr() 355 bool raw = 0; in PHP_FUNCTION() local 358 &hostname, &hostname_len, &type_param, &authns, &addtl, &raw) == FAILURE) { in PHP_FUNCTION() 375 if (!raw) { in PHP_FUNCTION() 390 if (raw) { in PHP_FUNCTION() 474 php_parserr(pRec, type_to_fetch, store_results, raw, &retval); in PHP_FUNCTION() 482 php_parserr(pRec, type_to_fetch, 1, raw, &retval); in PHP_FUNCTION() 497 php_parserr(pRec, type_to_fetch, 1, raw, &retval); in PHP_FUNCTION()
|
H A D | dns.c | 446 …int8_t *cp, uint8_t *end, querybuf *answer, int type_to_fetch, int store, bool raw, zval *subarray) in php_parserr() argument 491 if (raw) { in php_parserr() 826 bool raw = 0; in PHP_FUNCTION() local 834 Z_PARAM_BOOL(raw) in PHP_FUNCTION() 850 if (!raw) { in PHP_FUNCTION() 874 if (raw) { in PHP_FUNCTION() 1007 cp = php_parserr(cp, end, &answer, type_to_fetch, store_results, raw, &retval); in PHP_FUNCTION() 1020 cp = php_parserr(cp, end, &answer, DNS_T_ANY, authns != NULL, raw, &retval); in PHP_FUNCTION() 1032 cp = php_parserr(cp, end, &answer, DNS_T_ANY, 1, raw, &retval); in PHP_FUNCTION()
|
H A D | url.c | 461 static zend_always_inline zend_string *php_url_encode_impl(const char *s, size_t len, bool raw) /* … in php_url_encode_impl() argument 501 if (!raw) { in php_url_encode_impl() 509 if (raw) { in php_url_encode_impl() 536 if (!raw && c == ' ') { in php_url_encode_impl() 541 (c > 'z' && (!raw || c != '~'))) { in php_url_encode_impl()
|
/PHP-8.3/ext/curl/tests/ |
H A D | curl_postfields_array.phpt | 15 $url = "http://127.0.0.1:29999/get.inc?test=raw"; 47 POST /get.inc?test=raw HTTP/1.1
|
/PHP-8.3/ext/openssl/tests/ |
H A D | openssl_x509_fingerprint_basic.phpt | 16 echo "**Testing raw output md5 **\n"; 33 **Testing raw output md5 **
|
/PHP-8.3/ext/oci8/tests/ |
H A D | bind_long_raw.phpt | 16 $stmt = oci_parse($c, "create table phptestlngraw( id number(10), fileimage long raw)");
|
H A D | bind_raw.phpt | 16 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
|
H A D | bind_raw_2.phpt | 16 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
|
/PHP-8.3/ext/intl/tests/ |
H A D | normalizer_get_raw_decomposition.phpt | 11 * Try getting raw decomposition mappings
|