Home
last modified time | relevance | path

Searched refs:htmlspecialchars_decode (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/dports/lang/php73/php-7.3.33/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_error.phpt2 Test htmlspecialchars_decode() function : error conditions
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
10 echo "*** Testing htmlspecialchars_decode() : error conditions ***\n";
13 echo "\n-- Testing htmlspecialchars_decode() function with Zero arguments --\n";
14 var_dump( htmlspecialchars_decode() );
16 //Test htmlspecialchars_decode with one more than the expected number of arguments
21 var_dump( htmlspecialchars_decode($string, $quote_style, $extra_arg) );
26 *** Testing htmlspecialchars_decode() : error conditions ***
28 -- Testing htmlspecialchars_decode() function with Zero arguments --
30 Warning: htmlspecialchars_decode() expects at least 1 parameter, 0 given in %s on line %d
[all …]
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
10 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
18 // Calling htmlspecialchars_decode() with default arguments
19 var_dump( htmlspecialchars_decode($single_quote_string) );
20 var_dump( htmlspecialchars_decode($double_quote_string) );
23 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
24 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
25 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
27 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
28 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
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
14 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
86 var_dump( htmlspecialchars_decode($string, $value) );
96 *** Testing htmlspecialchars_decode() : usage variations ***
106 Warning: htmlspecialchars_decode() expects parameter 2 to be int, float given in %s on line %d
117 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
122 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
127 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
[all …]
H A Dhtmlspecialchars_decode_variation1.phpt2 Test htmlspecialchars_decode() function : usage variations - unexpected values for 'string' argument
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() with unexpected input values for $string argument
14 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
85 var_dump( htmlspecialchars_decode($value) );
95 *** Testing htmlspecialchars_decode() : usage variations ***
116 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
120 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
124 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
128 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
[all …]
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
13 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
24 // loop through each element of the array to check htmlspecialchars_decode() function with all poss…
28 var_dump( htmlspecialchars_decode($value) );
29 var_dump( htmlspecialchars_decode($value, ENT_COMPAT) );
30 var_dump( htmlspecialchars_decode($value, ENT_NOQUOTES) );
31 var_dump( htmlspecialchars_decode($value, ENT_QUOTES) );
38 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_error.phpt2 Test htmlspecialchars_decode() function : error conditions
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
10 echo "*** Testing htmlspecialchars_decode() : error conditions ***\n";
13 echo "\n-- Testing htmlspecialchars_decode() function with Zero arguments --\n";
14 var_dump( htmlspecialchars_decode() );
16 //Test htmlspecialchars_decode with one more than the expected number of arguments
21 var_dump( htmlspecialchars_decode($string, $quote_style, $extra_arg) );
26 *** Testing htmlspecialchars_decode() : error conditions ***
28 -- Testing htmlspecialchars_decode() function with Zero arguments --
30 Warning: htmlspecialchars_decode() expects at least 1 parameter, 0 given in %s on line %d
[all …]
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
10 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
18 // Calling htmlspecialchars_decode() with default arguments
19 var_dump( htmlspecialchars_decode($single_quote_string) );
20 var_dump( htmlspecialchars_decode($double_quote_string) );
23 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
24 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
25 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
27 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
28 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
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
14 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
86 var_dump( htmlspecialchars_decode($string, $value) );
96 *** Testing htmlspecialchars_decode() : usage variations ***
106 Warning: htmlspecialchars_decode() expects parameter 2 to be int, float given in %s on line %d
117 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
122 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
127 Warning: htmlspecialchars_decode() expects parameter 2 to be int, array given in %shtmlspecialchars…
[all …]
H A Dhtmlspecialchars_decode_variation1.phpt2 Test htmlspecialchars_decode() function : usage variations - unexpected values for 'string' argument
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() with unexpected input values for $string argument
14 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
85 var_dump( htmlspecialchars_decode($value) );
95 *** Testing htmlspecialchars_decode() : usage variations ***
116 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
120 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
124 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
128 Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in %s on line %d
[all …]
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
13 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
24 // loop through each element of the array to check htmlspecialchars_decode() function with all poss…
28 var_dump( htmlspecialchars_decode($value) );
29 var_dump( htmlspecialchars_decode($value, ENT_COMPAT) );
30 var_dump( htmlspecialchars_decode($value, ENT_NOQUOTES) );
31 var_dump( htmlspecialchars_decode($value, ENT_QUOTES) );
38 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/lang/php74/php-7.4.27/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
10 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
18 // Calling htmlspecialchars_decode() with default arguments
19 var_dump( htmlspecialchars_decode($single_quote_string) );
20 var_dump( htmlspecialchars_decode($double_quote_string) );
23 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
24 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
25 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
27 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
28 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
13 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
24 // loop through each element of the array to check htmlspecialchars_decode() function with all poss…
28 var_dump( htmlspecialchars_decode($value) );
29 var_dump( htmlspecialchars_decode($value, ENT_COMPAT) );
30 var_dump( htmlspecialchars_decode($value, ENT_NOQUOTES) );
31 var_dump( htmlspecialchars_decode($value, ENT_QUOTES) );
38 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
10 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
18 // Calling htmlspecialchars_decode() with default arguments
19 var_dump( htmlspecialchars_decode($single_quote_string) );
20 var_dump( htmlspecialchars_decode($double_quote_string) );
23 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
24 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
25 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
27 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
28 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
5 /* Prototype : string htmlspecialchars_decode(string $string [, int $quote_style])
11 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
13 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
24 // loop through each element of the array to check htmlspecialchars_decode() function with all poss…
28 var_dump( htmlspecialchars_decode($value) );
29 var_dump( htmlspecialchars_decode($value, ENT_COMPAT) );
30 var_dump( htmlspecialchars_decode($value, ENT_NOQUOTES) );
31 var_dump( htmlspecialchars_decode($value, ENT_QUOTES) );
38 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/chinese/phpbb3-tw/phpBB3/includes/auth/
H A Dauth_ldap.php57 …if (!@ldap_bind($ldap, htmlspecialchars_decode($config['ldap_user']), htmlspecialchars_decode($con…
66 htmlspecialchars_decode($config['ldap_base_dn']),
69 array(htmlspecialchars_decode($config['ldap_uid'])) :
70 …array(htmlspecialchars_decode($config['ldap_uid']), htmlspecialchars_decode($config['ldap_email'])…
90 …if (!empty($config['ldap_email']) && !isset($result[0][htmlspecialchars_decode($config['ldap_email…
157 …if (!@ldap_bind($ldap, htmlspecialchars_decode($config['ldap_user']), htmlspecialchars_decode($con…
169 htmlspecialchars_decode($config['ldap_base_dn']),
172 array(htmlspecialchars_decode($config['ldap_uid'])) :
173 …array(htmlspecialchars_decode($config['ldap_uid']), htmlspecialchars_decode($config['ldap_email'])…
182 if (@ldap_bind($ldap, $ldap_result[0]['dn'], htmlspecialchars_decode($password)))
[all …]
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
5 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
13 // Calling htmlspecialchars_decode() with default arguments
14 var_dump( htmlspecialchars_decode($single_quote_string) );
15 var_dump( htmlspecialchars_decode($double_quote_string) );
18 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
19 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
20 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
22 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
23 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
H A Dhtmlspecialchars_decode_variation6.phpt2 Test htmlspecialchars_decode() function : usage variations - binary safe
6 * testing whether htmlspecialchars_decode() is binary safe or not
9 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
19 //loop through the strings array to check if htmlspecialchars_decode() is binary safe
24 var_dump( htmlspecialchars_decode($value) );
26 var_dump( bin2hex(htmlspecialchars_decode($value)));
35 *** Testing htmlspecialchars_decode() : usage variations ***
H A Dhtmlspecialchars_decode_variation5.phpt2 Test htmlspecialchars_decode() function : usage variations - double quoted strings for 'string' arg…
6 * testing htmlspecialchars_decode() for various double quoted strings as argument for $string
8 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
19 // loop through each element of the array to check htmlspecialchars_decode() function with all poss…
23 var_dump( htmlspecialchars_decode($value) );
24 var_dump( htmlspecialchars_decode($value, ENT_COMPAT) );
25 var_dump( htmlspecialchars_decode($value, ENT_NOQUOTES) );
26 var_dump( htmlspecialchars_decode($value, ENT_QUOTES) );
33 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
5 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
13 // Calling htmlspecialchars_decode() with default arguments
14 var_dump( htmlspecialchars_decode($single_quote_string) );
15 var_dump( htmlspecialchars_decode($double_quote_string) );
18 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
19 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
20 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
22 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
23 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
/dports/lang/php81/php-8.1.1/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
5 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
13 // Calling htmlspecialchars_decode() with default arguments
14 var_dump( htmlspecialchars_decode($single_quote_string) );
15 var_dump( htmlspecialchars_decode($double_quote_string) );
18 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
19 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
20 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
22 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
23 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
H A Dhtmlspecialchars_decode_variation6.phpt2 Test htmlspecialchars_decode() function : usage variations - binary safe
6 * testing whether htmlspecialchars_decode() is binary safe or not
9 echo "*** Testing htmlspecialchars_decode() : usage variations ***\n";
19 //loop through the strings array to check if htmlspecialchars_decode() is binary safe
24 var_dump( htmlspecialchars_decode($value) );
26 var_dump( bin2hex(htmlspecialchars_decode($value)));
35 *** Testing htmlspecialchars_decode() : usage variations ***
/dports/lang/php80/php-8.0.15/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_basic.phpt2 Test htmlspecialchars_decode() function : basic functionality
5 echo "*** Testing htmlspecialchars_decode() : basic functionality ***\n";
13 // Calling htmlspecialchars_decode() with default arguments
14 var_dump( htmlspecialchars_decode($single_quote_string) );
15 var_dump( htmlspecialchars_decode($double_quote_string) );
18 var_dump( htmlspecialchars_decode($single_quote_string, ENT_COMPAT) );
19 var_dump( htmlspecialchars_decode($double_quote_string, ENT_COMPAT) );
20 var_dump( htmlspecialchars_decode($single_quote_string, ENT_NOQUOTES) );
22 var_dump( htmlspecialchars_decode($single_quote_string, ENT_QUOTES) );
23 var_dump( htmlspecialchars_decode($double_quote_string, ENT_QUOTES) );
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmAdminPlugin/modules/integration/templates/
H A D_osIntegration.php27 clientId = "<?php echo htmlspecialchars_decode($page['id']); ?>";
28 clientSecret = "<?php echo htmlspecialchars_decode($page['secret']); ?>";
29 clientUrl = "<?php echo htmlspecialchars_decode($page['url']); ?>";
30 successUrl = "<?php echo htmlspecialchars_decode($page['successUrl']); ?>";
31 ajaxURL = "<?php echo url_for(htmlspecialchars_decode($page['ajaxUrl'])); ?>";
42 <?php echo htmlspecialchars_decode($page['js']); ?>
205 <?php if(!empty(htmlspecialchars_decode($page['id']))) { ?>
/dports/www/phpbb3/phpBB3/phpbb/auth/provider/
H A Dldap.php86 …if (!@ldap_bind($ldap, htmlspecialchars_decode($this->config['ldap_user'], ENT_COMPAT), htmlspecia…
95 htmlspecialchars_decode($this->config['ldap_base_dn'], ENT_COMPAT),
98 array(htmlspecialchars_decode($this->config['ldap_uid'], ENT_COMPAT)) :
99 …array(htmlspecialchars_decode($this->config['ldap_uid'], ENT_COMPAT), htmlspecialchars_decode($thi…
118 …if (!empty($this->config['ldap_email']) && !isset($result[0][htmlspecialchars_decode($this->config…
183 …if (!@ldap_bind($ldap, htmlspecialchars_decode($this->config['ldap_user'], ENT_COMPAT), htmlspecia…
195 htmlspecialchars_decode($this->config['ldap_base_dn'], ENT_COMPAT),
198 array(htmlspecialchars_decode($this->config['ldap_uid'], ENT_COMPAT)) :
199 …array(htmlspecialchars_decode($this->config['ldap_uid'], ENT_COMPAT), htmlspecialchars_decode($thi…
208 if (@ldap_bind($ldap, $ldap_result[0]['dn'], htmlspecialchars_decode($password, ENT_COMPAT)))
[all …]
/dports/devel/pear-PHP_Compat/PHP_Compat-1.5.0/tests/function/
H A Dhtmlspecialchars_decode.phpt2 Function -- htmlspecialchars_decode
4 <?php if (function_exists('htmlspecialchars_decode')) { echo 'skip'; } ?>
8 PHP_Compat::loadFunction('htmlspecialchars_decode');
12 echo htmlspecialchars_decode($text), "\n";
13 echo htmlspecialchars_decode($text, ENT_COMPAT), "\n";
14 echo htmlspecialchars_decode($text, ENT_QUOTES), "\n";
15 echo htmlspecialchars_decode($text, ENT_NOQUOTES), "\n";

12345678910>>...20