Lines Matching refs:hint_charset
972 …_string *php_unescape_html_entities(zend_string *str, int all, int flags, const char *hint_charset) in php_unescape_html_entities() argument
984 charset = determine_charset(hint_charset, /* quiet */ 0); in php_unescape_html_entities()
1008 …tml_entities(const unsigned char *old, size_t oldlen, int all, int flags, const char *hint_charset) in php_escape_html_entities() argument
1010 return php_escape_html_entities_ex(old, oldlen, all, flags, hint_charset, 1, /* quiet */ 0); in php_escape_html_entities()
1095 …st unsigned char *old, size_t oldlen, int all, int flags, const char *hint_charset, bool double_en… in php_escape_html_entities_ex() argument
1099 enum entity_charset charset = determine_charset(hint_charset, quiet); in php_escape_html_entities_ex()
1310 zend_string *str, *hint_charset = NULL; in php_html_entities() local
1319 Z_PARAM_STR_OR_NULL(hint_charset) in php_html_entities()
1325 hint_charset ? ZSTR_VAL(hint_charset) : NULL, double_encode, /* quiet */ 0); in php_html_entities()
1358 zend_string *str, *hint_charset = NULL; in PHP_FUNCTION() local
1366 Z_PARAM_STR_OR_NULL(hint_charset) in PHP_FUNCTION()
1370 str, 1 /*all*/, (int)quote_style, hint_charset ? ZSTR_VAL(hint_charset) : NULL); in PHP_FUNCTION()