Searched refs:quote_style (Results 1 – 15 of 15) sorted by relevance
/PHP-7.4/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic3.phpt | 15 echo "-- with table = HTML_SPECIALCHARS & 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_SPECIALCHARS & 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"); 38 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT -- 49 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES -- [all …]
|
H A D | bug61116.phpt | 13 Parameter #1 [ <optional> $quote_style ] 23 Parameter #1 [ <optional> $quote_style ]
|
H A D | get_html_translation_table_basic2.phpt | 20 echo "-- with table = HTML_ENTITIES & quote_style = ENT_COMPAT --\n"; 22 $quote_style = ENT_COMPAT; 23 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 27 echo "-- with table = HTML_ENTITIES & quote_style = ENT_QUOTES --\n"; 28 $quote_style = ENT_QUOTES; 29 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 34 $quote_style = ENT_NOQUOTES; 35 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 44 -- with table = HTML_ENTITIES & quote_style = ENT_COMPAT -- 551 -- with table = HTML_ENTITIES & quote_style = ENT_QUOTES -- [all …]
|
H A D | htmlspecialchars_decode_basic.phpt | 5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style]) 22 // Calling htmlspecialchars_decode() with optional 'quote_style' argument
|
H A D | htmlspecialchars_decode_variation6.phpt | 5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
|
H A D | htmlspecialchars_decode_variation3.phpt | 5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
|
H A D | htmlspecialchars_decode_variation5.phpt | 5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
|
H A D | get_html_translation_table_basic4.phpt | 5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
|
H A D | htmlspecialchars_decode_variation4.phpt | 5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
|
H A D | htmlspecialchars_basic.phpt | 5 /* Prototype : string htmlspecialchars ( string $string [, int $quote_style [, string $charset …
|
H A D | htmlspecialchars.phpt | 5 /* Prototype: string htmlspecialchars ( string $string [, int $quote_style [, string $charset]] );
|
H A D | get_html_translation_table_basic1.phpt | 5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
|
H A D | htmlentities24.phpt | 5 /* Prototype: string htmlentities ( string $string [, int $quote_style [, string $charset]] );
|
/PHP-7.4/ext/standard/ |
H A D | html.c | 1448 zend_long quote_style = ENT_COMPAT; in PHP_FUNCTION() local 1454 Z_PARAM_LONG(quote_style) in PHP_FUNCTION() 1457 replaced = php_unescape_html_entities(str, 0 /*!all*/, (int)quote_style, NULL); in PHP_FUNCTION() 1471 zend_long quote_style = ENT_COMPAT; in PHP_FUNCTION() local 1477 Z_PARAM_LONG(quote_style) in PHP_FUNCTION() 1484 …replaced = php_unescape_html_entities(str, 1 /*all*/, (int)quote_style, (hint_charset ? ZSTR_VAL(h… in PHP_FUNCTION()
|
H A D | basic_functions.c | 1458 ZEND_ARG_INFO(0, quote_style) 1465 ZEND_ARG_INFO(0, quote_style) 1470 ZEND_ARG_INFO(0, quote_style) 1476 ZEND_ARG_INFO(0, quote_style) 1483 ZEND_ARG_INFO(0, quote_style)
|
Completed in 38 milliseconds