Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/tests/strings/
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_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 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 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 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 …]
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_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 Dhtmlspecialchars_decode_variation6.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
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 Dhtmlspecialchars_decode_variation1.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_decode_variation3.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 Dget_html_translation_table_basic4.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
H A Dhtmlspecialchars_decode_variation4.phpt5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
H A Dhtmlspecialchars_basic.phpt5 /* Prototype : string htmlspecialchars ( string $string [, int $quote_style [, string $charset …
H A Dget_html_translation_table_basic1.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
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]] );
/PHP-5.5/ext/standard/
H A Dhtml.c1493 long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1496 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &str, &str_len, &quote_style) == FAILU… in PHP_FUNCTION()
1500 …replaced = php_unescape_html_entities(str, str_len, &new_len, 0 /*!all*/, quote_style, NULL TSRMLS… in PHP_FUNCTION()
1515 long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1519 &quote_style, &hint_charset, &hint_charset_len) == FAILURE) { in PHP_FUNCTION()
1523 …replaced = php_unescape_html_entities(str, str_len, &new_len, 1 /*all*/, quote_style, hint_charset… in PHP_FUNCTION()
H A Dbasic_functions.c1491 ZEND_ARG_INFO(0, quote_style)
1498 ZEND_ARG_INFO(0, quote_style)
1503 ZEND_ARG_INFO(0, quote_style)
1509 ZEND_ARG_INFO(0, quote_style)
1516 ZEND_ARG_INFO(0, quote_style)

Completed in 48 milliseconds