Home
last modified time | relevance | path

Searched refs:encode (Results 26 – 50 of 58) sorted by relevance

123

/php-src/tests/lang/string/
H A Dunicode_escape.phpt6 var_dump("\u{61}"); // ASCII "a" - characters below U+007F just encode as ASCII, as it's UTF-8
/php-src/ext/standard/
H A Durl_scanner_ex.re596 if (encode) {
604 if (encode) {
760 if (encode) {
797 return php_url_scanner_add_var_impl(name, name_len, value, value_len, encode, 1);
803 return php_url_scanner_add_var_impl(name, name_len, value, value_len, encode, 0);
839 static inline int php_url_scanner_reset_var_impl(zend_string *name, int encode, int type)
863 if (encode) {
959 PHPAPI int php_url_scanner_reset_session_var(zend_string *name, int encode)
961 return php_url_scanner_reset_var_impl(name, encode, 1);
965 PHPAPI int php_url_scanner_reset_var(zend_string *name, int encode)
[all …]
/php-src/ext/session/tests/
H A Dsession_encode_variation8.phpt31 Warning: session_encode(): Cannot encode non-existent session in %s on line %d
/php-src/ext/zlib/tests/
H A Dgzencode_variation2-win32.phpt23 $data = "A small string to encode\n";
H A Dgzencode_variation2.phpt22 $data = "A small string to encode\n";
/php-src/ext/soap/
H A Dsoap.c301 encode* enc; in php_soap_prepare_globals()
2888 enc = param->encode;
3864 enc = hdr->encode;
3953 enc = param->encode;
4099 if (param->encode && param->encode->details.type_str) {
4112 if (param->encode && param->encode->details.type_str) {
4136 if (param->encode && param->encode->details.type_str) {
4197 if (type->encode) {
4239 if (type->encode &&
4280 elementType->encode && elementType->encode->details.type_str) {
[all …]
H A Dphp_sdl.c526 h->encode = h->element->encode; in wsdl_soap_binding_header()
723 param->encode = param->element->encode; in wsdl_message()
1255 attr->encode = encoders[i]; in sdl_deserialize_attribute()
1561 const encode *enc; in get_sdl_from_cache()
2129 const encode *enc; in add_sdl_to_cache()
2485 if (pheader->encode && pheader->encode->details.sdl_type) { in make_persistent_sdl_function_headers()
2489 pheader->encode = penc; in make_persistent_sdl_function_headers()
2546 if (pparam->encode && pparam->encode->details.sdl_type) { in make_persistent_sdl_parameters()
2550 pparam->encode = penc; in make_persistent_sdl_parameters()
2643 if (pattr->encode) { in make_persistent_sdl_attribute()
[all …]
H A Dphp_packet_soap.c324 master_to_zval(&tmp, param->encode, val); in parse_packet_soap()
408 enc = hdr->encode; in parse_packet_soap()
H A Dphp_soap.h46 typedef struct _encode encode, *encodePtr; typedef
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_text_03.phpt2 DOM\HTMLDocument serialization escape text 03 - special tags in namespace should encode content
/php-src/ext/mbstring/tests/
H A Dutf_encodings.phpt808 // (Using more bytes than needed to encode a character)
998 function encode($str, $encoding) {
1017 testValidString('+' . encode("\x12\x34", 'UTF-16BE') . '-', "\x00\x00\x12\x34", 'UTF-7', 'UTF-32BE'…
1018 testValidString('+' . encode("\x12\x34\x56\x78", 'UTF-16BE') . '-', "\x00\x00\x12\x34\x00\x00\x56\x…
1020 testValidString('+' . encode("\xFF\xEE\xEE\xFF", 'UTF-16BE') . '-', "\x00\x00\xFF\xEE\x00\x00\xEE\x…
1023 testValidString('+' . encode("\x00\x01\x04\x00", 'UTF-32BE') . '-', "\x00\x01\x04\x00", 'UTF-7', 'U…
1029 testValidString('+' . encode('ABC', 'ASCII'), "\x00A\x00B\x00C", 'UTF-7', 'UTF-16BE', false);
1033 testValidString('+' . encode('AB', 'ASCII') . '-+' . encode('CD', 'ASCII') . '-', "\x00A\x00B\x00C\…
1037 testValidString('+' . encode('AB', 'ASCII') . '-!+' . encode('CD', 'ASCII') . '-', "\x00A\x00B\x00!…
1085 // Base64 section should not have 4 ASCII characters; the first 3 can encode one
[all …]
H A Dhtmlent.phpt26 // Using UTF-8 internally allows to encode/decode ALL characters.
H A Dmb_encode_numericentity.phpt20 // HTML-encode a null byte
H A Dmb_encode_mimeheader_basic4.phpt105 // transfer-encode it, it takes too many bytes to fit on a single line
111 // with no transfer encoding, and when it would transfer-encode
117 // In the general case, matching the old implementation's decision to transfer-encode or not
H A Dutf8_mobile_encodings.phpt56 // (Using more bytes than needed to encode a character)
H A Diso2022jp_encoding.phpt223 // Single bytes from 0xA3-0xDF can be used to encode kana in JIS8
/php-src/ext/standard/tests/strings/
H A Dhtmlentities18.phpt2 htmlentities() / htmlspecialchars() "don't double encode" flag support
/php-src/ext/dom/lexbor/lexbor/encoding/
H A Dbase.h191 lxb_encoding_encode_f encode; member
/php-src/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c60 …if (PASS == pfc->data->m.encode((compress_buf + COMPRESSED_HEADER_SIZE + MYSQLND_HEADER_SIZE), &tm… in write_compressed_packet()
289 MYSQLND_METHOD(mysqlnd_pfc, encode)(zend_uchar * compress_buffer, size_t * compress_buffer_len, in MYSQLND_METHOD() argument
485 MYSQLND_METHOD(mysqlnd_pfc, encode),
/php-src/ext/session/
H A Dphp_session.h228 zend_string *(*encode)(PS_SERIALIZER_ENCODE_ARGS); member
263 zend_string *(*encode)(PS_SERIALIZER_ENCODE_ARGS),
H A Dsession.c251 return PS(serializer)->encode(); in php_session_encode()
1047 PHPAPI zend_result php_session_register_serializer(const char *name, zend_string *(*encode)(PS_SERI… in php_session_register_serializer()
1054 ps_serializers[i].encode = encode; in php_session_register_serializer()
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_createFromFile_http_header.phpt48 …"tex.t/h#\$%!&'*%2B-.^_`|~tml;Charset=\"ISO-8859-1\"", // Note: have to encode + as 2B because of …
/php-src/ext/gd/
H A Dconfig.w3228 …CHECK_HEADER_ADD_INCLUDE("encode.h", "CFLAGS_GD", PHP_GD + ";" + PHP_PHP_BUILD + "\\include\\webp"…
/php-src/ext/dom/
H A Dconfig.w3228 …ADD_SOURCES("ext/dom/lexbor/lexbor/encoding", "big5.c decode.c encode.c encoding.c euc_kr.c gb1803…
H A Dconfig.m422 …$LEXBOR_DIR/encoding/big5.c $LEXBOR_DIR/encoding/decode.c $LEXBOR_DIR/encoding/encode.c $LEXBOR_DI…

Completed in 93 milliseconds

123