forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path026.phpt
49 lines (37 loc) · 2.04 KB
/
026.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
--TEST--
filter_var() and FILTER_SANITIZE_STRIPPED
--EXTENSIONS--
filter
--FILE--
<?php
var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to the bone</p>", FILTER_SANITIZE_STRIPPED));
var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED));
var_dump(filter_var("", FILTER_SANITIZE_STRIPPED));
var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to the bone</p>", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_LOW));
var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_LOW));
var_dump(filter_var("", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_LOW));
var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to the bone</p>", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_HIGH));
var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_HIGH));
var_dump(filter_var("", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STRIP_HIGH));
echo "Done\n";
?>
--EXPECTF--
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(40) "Let me see you Stripped down to the bone"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(11) "!@#$%^&*()>"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(0) ""
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(40) "Let me see you Stripped down to the bone"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(11) "!@#$%^&*()>"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(0) ""
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(40) "Let me see you Stripped down to the bone"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(11) "!@#$%^&*()>"
Deprecated: Constant FILTER_SANITIZE_STRIPPED is deprecated in %s on line %d
string(0) ""
Done