Home
last modified time | relevance | path

Searched refs:quote_style (Results 1 – 5 of 5) sorted by relevance

/php-src/ext/standard/tests/strings/
H A Dget_html_translation_table_basic3.phpt10 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n";
12 $quote_style = ENT_COMPAT;
13 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
17 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
18 $quote_style = ENT_QUOTES;
19 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
24 $quote_style = ENT_NOQUOTES;
25 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
33 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
44 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --
[all …]
H A Dget_html_translation_table_basic2.phpt15 echo "-- with table = HTML_ENTITIES & quote_style = ENT_COMPAT --\n";
17 $quote_style = ENT_COMPAT;
18 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
22 echo "-- with table = HTML_ENTITIES & quote_style = ENT_QUOTES --\n";
23 $quote_style = ENT_QUOTES;
24 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
29 $quote_style = ENT_NOQUOTES;
30 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
39 -- with table = HTML_ENTITIES & quote_style = ENT_COMPAT --
546 -- with table = HTML_ENTITIES & quote_style = ENT_QUOTES --
[all …]
H A Dhtmlspecialchars_decode_basic.phpt17 // Calling htmlspecialchars_decode() with optional 'quote_style' argument
H A Dhtmlentities24.phpt5 /* Prototype: string htmlentities ( string $string [, int $quote_style [, string $charset]] );
/php-src/ext/standard/
H A Dhtml.c1349 zend_long quote_style = ENT_QUOTES|ENT_SUBSTITUTE; in PHP_FUNCTION() local
1355 Z_PARAM_LONG(quote_style) in PHP_FUNCTION()
1358 replaced = php_unescape_html_entities(str, 0 /*!all*/, (int)quote_style, NULL); in PHP_FUNCTION()
1367 zend_long quote_style = ENT_QUOTES|ENT_SUBSTITUTE; in PHP_FUNCTION() local
1373 Z_PARAM_LONG(quote_style) in PHP_FUNCTION()
1378 str, 1 /*all*/, (int)quote_style, hint_charset ? ZSTR_VAL(hint_charset) : NULL); in PHP_FUNCTION()

Completed in 14 milliseconds