Home
last modified time | relevance | path

Searched refs:encoding (Results 1 – 25 of 966) sorted by path

12345678910>>...39

/PHP-7.4/
H A DNEWS115 . Fixed bug #78987 (High memory usage during encoding detection). (Anatol)
324 . Fixed bug #73246 (XMLReader: encoding length not checked). (cmb)
917 . Fixed bug #79441 (Segfault in mb_chr() if internal encoding is unsupported).
2659 . Fixed bug #77025 (mb_strpos throws Unknown encoding or conversion error).
H A DUPGRADING173 warning) if it is used with an encoding for which only basic entity
431 . Passing the encoding as 3rd parameter to mb_strrpos() is deprecated. Instead
432 pass a 0 offset and encoding as 4th parameter.
565 . The recode extension has been moved to PECL. For character set/encoding
/PHP-7.4/Zend/tests/
H A Dbug69092.2.phpt10 declare(encoding="UTF-8");
16 Warning: declare(encoding=...) ignored because Zend multibyte feature is turned off by settings in …
H A Dbug69092.phpt16 declare(encoding="utf-8");
H A Dbug75218.phpt17 try_eval('declare(encoding=[]);');
H A Ddeclare_001.phpt14 declare(encoding = 1);
15 declare(encoding = 112313123213131232100);
16 declare(encoding = 'utf-8');
17 declare(encoding = M_PI);
23 Warning: Unsupported encoding [1] in %sdeclare_001.php on line %d
25 Warning: Unsupported encoding [1.1231312321313E+20] in %sdeclare_001.php on line %d
H A Ddeclare_002.phpt14 declare(encoding = 1);
15 declare(encoding = 1123131232131312321);
16 declare(encoding = 'utf-8');
17 declare(encoding = M_PI);
23 Warning: Unsupported encoding [%d] in %sdeclare_002.php on line 3
25 Warning: Unsupported encoding [%f] in %sdeclare_002.php on line 4
H A Ddeclare_003.phpt9 declare(encoding = 1);
10 declare(encoding = 11111111111111);
11 declare(encoding = M_PI);
17 Warning: Unsupported encoding [1] in %sdeclare_003.php on line %d
19 Warning: Unsupported encoding [11111111111111] in %sdeclare_003.php on line %d
H A Ddeclare_004.phpt8 declare(encoding = 1);
9 declare(encoding = 1123131232131312321);
10 declare(encoding = M_PI);
16 Warning: Unsupported encoding [%d] in %sdeclare_004.php on line 3
18 Warning: Unsupported encoding [%f] in %sdeclare_004.php on line 4
H A Dns_086.phpt2 086: bracketed namespace with encoding
13 declare(encoding='utf-8');
/PHP-7.4/Zend/tests/multibyte/
H A Dmultibyte_encoding_001.phpt17 declare(encoding='Shift_JIS');
H A Dmultibyte_encoding_004.phpt2 test for mbstring script_encoding for flex unsafe encoding (Shift_JIS)
H A Dmultibyte_encoding_005.phpt2 encoding conversion from script encoding into internal encoding
H A Dmultibyte_encoding_006.phpt2 Scripts with flex-incompatible encoding without suitable conversion strategy
19 …error: Could not convert the script from the detected encoding "UTF-32LE" to a compatible encoding
/PHP-7.4/Zend/tests/type_declarations/
H A Dscalar_strict_declaration_placement_006.phpt16 declare(encoding="UTF-8");
H A Dscalar_strict_declaration_placement_007.phpt17 declare(encoding="ISO-8859-1");
/PHP-7.4/Zend/
H A Dzend_multibyte.c31 static const char *dummy_encoding_name_getter(const zend_encoding *encoding) in dummy_encoding_name_getter() argument
33 return (const char*)encoding; in dummy_encoding_name_getter()
36 static int dummy_encoding_lexer_compatibility_checker(const zend_encoding *encoding) in dummy_encoding_lexer_compatibility_checker() argument
63 static int dummy_internal_encoding_setter(const zend_encoding *encoding) in dummy_internal_encoding_setter() argument
138 ZEND_API const char *zend_multibyte_get_encoding_name(const zend_encoding *encoding) in zend_multibyte_get_encoding_name() argument
140 return multibyte_functions.encoding_name_getter(encoding); in zend_multibyte_get_encoding_name()
143 ZEND_API int zend_multibyte_check_lexer_compatibility(const zend_encoding *encoding) in zend_multibyte_check_lexer_compatibility() argument
145 return multibyte_functions.lexer_compatibility_checker(encoding); in zend_multibyte_check_lexer_compatibility()
183 ZEND_API int zend_multibyte_set_internal_encoding(const zend_encoding *encoding) in zend_multibyte_set_internal_encoding() argument
185 return multibyte_functions.internal_encoding_setter(encoding); in zend_multibyte_set_internal_encoding()
H A Dzend_multibyte.h28 typedef const char* (*zend_encoding_name_getter)(const zend_encoding *encoding);
29 typedef int (*zend_encoding_lexer_compatibility_checker)(const zend_encoding *encoding);
34 typedef int (*zend_encoding_internal_encoding_setter)(const zend_encoding *encoding);
65 ZEND_API const char *zend_multibyte_get_encoding_name(const zend_encoding *encoding);
66 ZEND_API int zend_multibyte_check_lexer_compatibility(const zend_encoding *encoding);
74 ZEND_API int zend_multibyte_set_internal_encoding(const zend_encoding *encoding);
/PHP-7.4/ext/curl/tests/responder/
H A Dget.inc23 case 'encoding':
/PHP-7.4/ext/dom/
H A Ddocument.c139 ZEND_ARG_INFO(0, encoding)
311 char *encoding; in dom_document_encoding_read() local
318 encoding = (char *) docp->encoding; in dom_document_encoding_read()
320 if (encoding != NULL) { in dom_document_encoding_read()
321 ZVAL_STRING(retval, encoding); in dom_document_encoding_read()
349 if (docp->encoding != NULL) { in dom_document_encoding_write()
350 xmlFree((xmlChar *)docp->encoding); in dom_document_encoding_write()
1280 char *encoding, *version = NULL; in PHP_METHOD() local
1296 docp->encoding = (const xmlChar *) xmlStrdup((xmlChar *) encoding); in PHP_METHOD()
2141 const char *encoding; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/dom/tests/
H A DDOMComment_construct_basic_001.phpt18 <?xml version="1.0" encoding="UTF-8"?>
H A DDOMDocumentType_basic_001.phpt11 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
24 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
H A DDOMDocumentType_publicId_basic_001.phpt10 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
H A DDOMDocumentType_systemId_basic_001.phpt10 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
H A DDOMDocument_documentURI_basic.phpt12 $xml = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

Completed in 60 milliseconds

12345678910>>...39