/PHP-8.0/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);
|
/PHP-8.0/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.0/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.0/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.0/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.0/ext/soap/ |
H A D | php_encoding.c | 420 enc = encode; in master_to_xml_int() 474 encode = enc; in master_to_xml_int() 500 node = encode->to_xml(&encode->details, data, style, parent); in master_to_xml_int() 558 ret = encode->to_zval(ret, &encode->details, data); in master_to_zval_int() 589 encode = enc; in master_to_zval() 1397 sdlType->encode && type != &sdlType->encode->details) { in to_zval_object_ex() 1446 (sdlType->encode->details.sdl_type->encode == NULL || in to_zval_object_ex() 1802 sdlType->encode && type != &sdlType->encode->details) { in to_xml_object() 1828 sdlType->encode && type != &sdlType->encode->details) { in to_xml_object() 3168 if (type->encode && enc != &type->encode->details) { in sdl_guess_convert_zval() [all …]
|
H A D | php_encoding.h | 188 xmlNodePtr master_to_xml(encodePtr encode, zval *data, int style, xmlNodePtr parent); 189 zval *master_to_zval(zval *ret, encodePtr encode, xmlNodePtr data); 205 encodePtr get_conversion(int encode); 210 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() 334 cur_type->encode = emalloc(sizeof(encode)); in schema_simpleType() 335 memset(cur_type->encode, 0, sizeof(encode)); in schema_simpleType() 338 cur_type->encode->details.sdl_type = ptr; in schema_simpleType() 1389 cur_type->encode = emalloc(sizeof(encode)); in schema_complexType() 1390 memset(cur_type->encode, 0, sizeof(encode)); in schema_complexType() 1393 cur_type->encode->details.sdl_type = ptr; in schema_complexType() 1935 newAttr->encode = dummy_type->encode; in schema_attribute() 2113 attr->encode = tmp->encode; in schema_attribute_fixup() [all …]
|
/PHP-8.0/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);
|
H A D | gzencode_basic1.phpt | 31 // Clear OS byte before encode 42 // Clear OS byte before encode
|
H A D | gzencode_variation2-win32.phpt | 23 $data = "A small string to encode\n";
|
/PHP-8.0/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.0/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 | bug77608.phpt | 2 Bug #77608: http_build_query doesn't encode "+" in a float number
|
H A D | str_rot13_basic.phpt | 27 $encode = str_rot13($str); 28 $decode = str_rot13($encode);
|
/PHP-8.0/ext/session/tests/ |
H A D | session_encode_variation1.phpt | 28 Warning: session_encode(): Cannot encode non-existent session in %s on line %d 38 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
H A D | session_encode_variation2.phpt | 26 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
H A D | session_encode_variation8.phpt | 29 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
|
/PHP-8.0/ext/iconv/tests/ |
H A D | bug53891.phpt | 2 Bug #53891 (iconv_mime_encode() fails to Q-encode UTF-8 string)
|
/PHP-8.0/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
|
/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_status.c | 143 int full, encode; in fpm_status_handle_request() local 178 encode = 0; in fpm_status_handle_request() 220 encode = 1; in fpm_status_handle_request() 289 encode = 1; in fpm_status_handle_request() 480 if (!encode) { in fpm_status_handle_request()
|