Home
last modified time | relevance | path

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

/PHP-5.3/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 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
20 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
21 $quote_style = ENT_QUOTES;
22 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
25 $quote_style = ENT_NOQUOTES;
26 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
32 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
43 -- 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 arugment 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 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
25 echo "-- with table = HTML_ENTITIES & quote_style = ENT_QUOTES --\n";
26 $quote_style = ENT_QUOTES;
27 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
30 $quote_style = ENT_NOQUOTES;
31 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
38 -- with table = HTML_ENTITIES & quote_style = ENT_COMPAT --
545 -- 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;
81 $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 Dget_html_translation_table_basic4.phpt5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
H A Dhtmlspecialchars_decode_variation5.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_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…
/PHP-5.3/ext/standard/
H A Dhtml.h42 …tml_entities(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_cha…
43 …_entities_ex(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_cha…
44 …tml_entities(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_cha…
H A Dhtml.c1028 if ((code == '\'' && !(quote_style & ENT_HTML_QUOTE_SINGLE)) || in php_unescape_html_entities()
1029 (code == '"' && !(quote_style & ENT_HTML_QUOTE_DOUBLE))) { in php_unescape_html_entities()
1146 if (quote_style & ENT_HTML_IGNORE_ERRORS) { in php_escape_html_entities_ex()
1243 (quote_style & basic_entities[j].flags) == 0)) { in php_escape_html_entities_ex()
1282 long quote_style = ENT_COMPAT; in php_html_entities() local
1325 long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1341 if (basic_entities[i].flags && !(quote_style & basic_entities[i].flags)) { in PHP_FUNCTION()
1391 long quote_style = ENT_COMPAT; in PHP_FUNCTION() local
1395 &quote_style, &hint_charset, &hint_charset_len) == FAILURE) { in PHP_FUNCTION()
1420 long which = HTML_SPECIALCHARS, quote_style = ENT_COMPAT; in PHP_FUNCTION() local
[all …]
H A Dbasic_functions.c1486 ZEND_ARG_INFO(0, quote_style)
1493 ZEND_ARG_INFO(0, quote_style)
1498 ZEND_ARG_INFO(0, quote_style)
1504 ZEND_ARG_INFO(0, quote_style)
1511 ZEND_ARG_INFO(0, quote_style)
/PHP-5.3/ext/standard/tests/file/
H A Dhtmlentities19.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]] );

Completed in 37 milliseconds