Home
last modified time | relevance | path

Searched refs:quote_style (Results 1 – 21 of 21) sorted by last modified time

/PHP-7.1/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_variation3.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_decode_variation4.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_decode_variation5.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_decode_variation6.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dget_html_translation_table_basic3.phpt15 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 Dget_html_translation_table_basic4.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
H A Dget_html_translation_table_error.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
15 $quote_style = ENT_COMPAT;
18 var_dump( get_html_translation_table($table, $quote_style, "UTF-8", $extra_arg) );
H A Dget_html_translation_table_variation1.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
16 $quote_style = ENT_COMPAT;
85 $v = get_html_translation_table($table, $quote_style, "UTF-8");
H A Dget_html_translation_table_variation2.phpt2 Test get_html_translation_table() function : usage variations - unexpected quote_style values
5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
11 * test get_html_translation_table() with unexpteced value for argument $quote_style
71 // when $quote_style argument is supplied with different values
72 echo "\n--- Testing get_html_translation_table() by supplying different values for 'quote_style' ar…
76 $quote_style = $values [$index];
78 var_dump( get_html_translation_table($table, $quote_style) );
88 --- Testing get_html_translation_table() by supplying different values for 'quote_style' argument -…
H A Dhtmlentities24.phpt5 /* Prototype: string htmlentities ( string $string [, int $quote_style [, string $charset]] );
H A Dhtmlspecialchars.phpt5 /* Prototype: string htmlspecialchars ( string $string [, int $quote_style [, string $charset]] );
H A Dhtmlspecialchars_basic.phpt5 /* Prototype : string htmlspecialchars ( string $string [, int $quote_style [, string $charset …
H A Dhtmlspecialchars_decode_basic.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
22 // Calling htmlspecialchars_decode() with optional 'quote_style' argument
H A Dhtmlspecialchars_decode_error.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
19 $quote_style = ENT_COMPAT;
21 var_dump( htmlspecialchars_decode($string, $quote_style, $extra_arg) );
H A Dhtmlspecialchars_decode_variation1.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_decode_variation2.phpt2 Test htmlspecialchars_decode() function : usage variations - unexpected values for 'quote_style' ar…
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() by giving unexpected input values for $quote_style argument
82 // loop through each element of the array for quote_style
H A Dbug61116.phpt13 Parameter #1 [ <optional> $quote_style ]
23 Parameter #1 [ <optional> $quote_style ]
H A Dget_html_translation_table_basic1.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
H A Dget_html_translation_table_basic2.phpt20 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 …]
/PHP-7.1/ext/standard/
H A Dhtml.c1500 zend_long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1503 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &str, &str_len, &quote_style) == FAILURE) { in PHP_FUNCTION()
1507 …replaced = php_unescape_html_entities((unsigned char*)str, str_len, 0 /*!all*/, (int)quote_style, … in PHP_FUNCTION()
1521 zend_long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1527 Z_PARAM_LONG(quote_style) in PHP_FUNCTION()
1534 …entities((unsigned char*)ZSTR_VAL(str), ZSTR_LEN(str), 1 /*all*/, (int)quote_style, (hint_charset … in PHP_FUNCTION()
H A Dbasic_functions.c1459 ZEND_ARG_INFO(0, quote_style)
1466 ZEND_ARG_INFO(0, quote_style)
1471 ZEND_ARG_INFO(0, quote_style)
1477 ZEND_ARG_INFO(0, quote_style)
1484 ZEND_ARG_INFO(0, quote_style)

Completed in 80 milliseconds