Searched refs:quote_style (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic3.phpt | 10 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 D | get_html_translation_table_basic2.phpt | 15 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 D | htmlspecialchars_decode_basic.phpt | 17 // Calling htmlspecialchars_decode() with optional 'quote_style' argument
|
H A D | htmlentities24.phpt | 5 /* Prototype: string htmlentities ( string $string [, int $quote_style [, string $charset]] );
|
/php-src/ext/standard/ |
H A D | html.c | 1341 zend_long quote_style = ENT_QUOTES|ENT_SUBSTITUTE; in PHP_FUNCTION() local 1347 Z_PARAM_LONG(quote_style) in PHP_FUNCTION() 1350 replaced = php_unescape_html_entities(str, 0 /*!all*/, (int)quote_style, NULL); in PHP_FUNCTION() 1359 zend_long quote_style = ENT_QUOTES|ENT_SUBSTITUTE; in PHP_FUNCTION() local 1365 Z_PARAM_LONG(quote_style) in PHP_FUNCTION() 1370 str, 1 /*all*/, (int)quote_style, hint_charset ? ZSTR_VAL(hint_charset) : NULL); in PHP_FUNCTION()
|
Completed in 13 milliseconds