/PHP-8.3/ext/standard/ |
H A D | url_scanner_ex.h | 26 …l(const char *url, size_t urllen, const char *name, const char *value, size_t *newlen, int encode); 27 …dd_session_var(const char *name, size_t name_len, const char *value, size_t value_len, int encode); 28 PHPAPI int php_url_scanner_reset_session_var(zend_string *name, int encode); 30 …canner_add_var(const char *name, size_t name_len, const char *value, size_t value_len, int encode); 31 PHPAPI int php_url_scanner_reset_var(zend_string *name, int encode);
|
H A D | metaphone.c | 82 static zend_always_inline char encode(char c) { in encode() function 91 #define isvowel(c) (encode(c) & 1) /* AEIOU */ 94 #define NOCHANGE(c) (encode(c) & 2) /* FJMNR */ 97 #define AFFECTH(c) (encode(c) & 4) /* CGPST */ 100 #define MAKESOFT(c) (encode(c) & 8) /* EIY */ 103 #define NOGHTOF(c) (encode(c) & 16) /* BDH */
|
H A D | url_scanner_ex.re | 595 if (encode) { 603 if (encode) { 759 if (encode) { 800 return php_url_scanner_add_var_impl(name, name_len, value, value_len, encode, 1); 806 return php_url_scanner_add_var_impl(name, name_len, value, value_len, encode, 0); 842 static inline int php_url_scanner_reset_var_impl(zend_string *name, int encode, int type) 866 if (encode) { 962 PHPAPI int php_url_scanner_reset_session_var(zend_string *name, int encode) 964 return php_url_scanner_reset_var_impl(name, encode, 1); 968 PHPAPI int php_url_scanner_reset_var(zend_string *name, int encode) [all …]
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | bug68532.phpt | 2 Bug #68532: convert.base64-encode omits padding bytes 9 $filter = stream_filter_append($stream, 'convert.base64-encode'); 16 $filter = stream_filter_append($fileStream , 'convert.base64-encode');
|
/PHP-8.3/ext/standard/tests/streams/ |
H A D | bug64166.phpt | 2 Bug #64166: quoted-printable-encode stream filter incorrectly discarding whitespace 11 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array( 20 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
|
H A D | bug64166_3.phpt | 2 Bug #64166: quoted-printable-encode stream filter incorrectly discarding whitespace - writes 8 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_WRITE, array( 20 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_WRITE, array(
|
H A D | bug64166_2.phpt | 2 Bug #64166: quoted-printable-encode stream filter incorrectly discarding whitespace - split reads 11 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array( 22 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
|
H A D | bug65483.phpt | 2 Bug #65483: quoted-printable encode stream filter incorrectly encoding spaces 12 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ);
|
/PHP-8.3/ext/gd/tests/ |
H A D | bug79945.phpt | 12 imagecreatefrompng('php://filter/read=convert.base64-encode/resource=' . __DIR__ . '/test.png'); 17 imagecreatefrompng('php://filter/read=convert.base64-encode/resource=' . __DIR__ . '/test.png'); 22 Warning: imagecreatefrompng(): "php://filter/read=convert.base64-encode/resource=%s" is not a valid…
|
/PHP-8.3/ext/soap/ |
H A D | php_encoding.c | 417 enc = encode; in master_to_xml_int() 471 encode = enc; in master_to_xml_int() 497 node = encode->to_xml(&encode->details, data, style, parent); in master_to_xml_int() 555 ret = encode->to_zval(ret, &encode->details, data); in master_to_zval_int() 586 encode = enc; in master_to_zval() 1429 sdlType->encode && type != &sdlType->encode->details) { in to_zval_object_ex() 1482 (sdlType->encode->details.sdl_type->encode == NULL || in to_zval_object_ex() 1848 sdlType->encode && type != &sdlType->encode->details) { in to_xml_object() 1874 sdlType->encode && type != &sdlType->encode->details) { in to_xml_object() 3236 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_zval() [all …]
|
H A D | php_encoding.h | 195 xmlNodePtr master_to_xml(encodePtr encode, zval *data, int style, xmlNodePtr parent); 196 zval *master_to_zval(zval *ret, encodePtr encode, xmlNodePtr data); 212 encodePtr get_conversion(int encode); 217 extern const encode defaultEncoding[];
|
H A D | php_sdl.h | 98 encodePtr encode; member 204 encodePtr encode; member 215 encodePtr encode; member 250 encodePtr encode; member
|
H A D | php_schema.c | 69 enc = emalloc(sizeof(encode)); in create_encoder() 71 memset(enc, 0, sizeof(encode)); in create_encoder() 355 cur_type->encode = emalloc(sizeof(encode)); in schema_simpleType() 356 memset(cur_type->encode, 0, sizeof(encode)); in schema_simpleType() 359 cur_type->encode->details.sdl_type = ptr; in schema_simpleType() 1410 cur_type->encode = emalloc(sizeof(encode)); in schema_complexType() 1411 memset(cur_type->encode, 0, sizeof(encode)); in schema_complexType() 1414 cur_type->encode->details.sdl_type = ptr; in schema_complexType() 1956 newAttr->encode = dummy_type->encode; in schema_attribute() 2134 attr->encode = tmp->encode; in schema_attribute_fixup() [all …]
|
/PHP-8.3/ext/standard/tests/filters/ |
H A D | bug77231.phpt | 2 Bug #77231 (Segfault when using convert.quoted-printable-encode filter) 5 var_dump(file(urldecode('php://filter/convert.quoted-printable-encode/resource=data://,%bfAAAAAAAAF…
|
/PHP-8.3/ext/json/tests/ |
H A D | bug50224.phpt | 2 bug #50224 (json_encode() does not always encode a float as a float) 15 echo "\n* Testing encode/decode symmetry\n\n"; 35 * Testing encode/decode symmetry
|
/PHP-8.3/ext/bz2/tests/ |
H A D | bz2_filter_compress.phpt | 2 bzip2.compress (with convert.base64-encode) 11 stream_filter_append($fp, 'convert.base64-encode', STREAM_FILTER_WRITE);
|
/PHP-8.3/ext/zlib/tests/ |
H A D | zlib_filter_deflate.phpt | 2 zlib.deflate (with convert.base64-encode) 11 stream_filter_append($fp, 'convert.base64-encode', STREAM_FILTER_WRITE);
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | convert_uudecode_basic.phpt | 31 $encode = convert_uuencode($string); 32 $decode = convert_uudecode($encode); 35 var_dump($encode, $decode, $string);
|
H A D | str_rot13_basic.phpt | 27 $encode = str_rot13($str); 28 $decode = str_rot13($encode);
|
/PHP-8.3/ext/session/tests/ |
H A D | session_encode_variation1.phpt | 30 Warning: session_encode(): Cannot encode non-existent session in %s on line %d 40 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
H A D | session_encode_variation2.phpt | 28 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
H A D | session_encode_variation8.phpt | 31 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
/PHP-8.3/ext/standard/tests/http/http_build_query/ |
H A D | bug77608.phpt | 2 Bug #77608: http_build_query doesn't encode "+" in a float number
|
/PHP-8.3/ext/iconv/tests/ |
H A D | bug53891.phpt | 2 Bug #53891 (iconv_mime_encode() fails to Q-encode UTF-8 string)
|
/PHP-8.3/tests/lang/string/ |
H A D | unicode_escape.phpt | 6 var_dump("\u{61}"); // ASCII "a" - characters below U+007F just encode as ASCII, as it's UTF-8
|