Searched defs:quote_style (Results 1 - 1 of 1) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | html.c | 919 * that correspond to quotes (depending on quote_style). 1473 /* {{{ proto string htmlspecialchars(string string [, int quote_style[, string charset[, bool double_encode]]]) 1481 /* {{{ proto string htmlspecialchars_decode(string string [, int quote_style]) 1488 long quote_style = ENT_COMPAT; local 1491 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &str, &str_len, "e_style) == FAILURE) { 1495 replaced = php_unescape_html_entities(str, str_len, &new_len, 0 /*!all*/, quote_style, NULL TSRMLS_CC); 1503 /* {{{ proto string html_entity_decode(string string [, int quote_style][, string charset]) 1510 long quote_style = ENT_COMPAT; local 1514 "e_style, &hint_charset, &hint_charset_len) == FAILURE) { 1518 replaced = php_unescape_html_entities(str, str_len, &new_len, 1 /*all*/, quote_style, hint_charse [all...] |
Completed in 5 milliseconds