本文整理汇总了PHP中Filter::XSSFilter方法的典型用法代码示例。如果您正苦于以下问题:PHP Filter::XSSFilter方法的具体用法?PHP Filter::XSSFilter怎么用?PHP Filter::XSSFilter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Filter
的用法示例。
在下文中一共展示了Filter::XSSFilter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get
/**
* gets/returns the value of a specific key of the session
*
* @param mixed $key Usually a string, right ?
* @return mixed the key's value or nothing
*/
public static function get($key)
{
if (isset($_SESSION[$key])) {
$value = $_SESSION[$key];
// filter the value for XSS vulnerabilities
return Filter::XSSFilter($value);
}
}
示例2: get
/**
* gets/returns the value of a specific key of the session
*
* @param mixed $key Usually a string, right ?
* @return mixed the key's value or nothing
*/
public static function get($key)
{
if (isset($_SESSION[$key])) {
if (is_string($_SESSION[$key])) {
// filter the value for XSS vulnerabilities
Filter::XSSFilter($_SESSION[$key]);
return $_SESSION[$key];
} else {
return $_SESSION[$key];
}
}
}
示例3: get
/**
* gets/returns the value of a specific key of the session
*
* @param mixed $key Usually a string, right ?
* @return mixed the key's value or nothing
*/
public static function get($key)
{
if (isset($_SESSION[$key])) {
if (is_string($_SESSION[$key])) {
// filter the value for XSS vulnerabilities
if ($key == "Error-text") {
// Error-text is formatted, but set by the server. It is exempt from processing, which mangles it.
return $_SESSION[$key];
}
Filter::XSSFilter($_SESSION[$key]);
return $_SESSION[$key];
} else {
return $_SESSION[$key];
}
}
}
示例4: testXSSFilterWithBadCode
/**
* When argument contains bad code the encoded (and therefore un-dangerous) string should be returned
*/
public function testXSSFilterWithBadCode()
{
$codeBefore = "Hello <script>var http = new XMLHttpRequest(); http.open('POST', 'example.com/my_account/delete.php', true);</script>";
$codeAfter = "Hello <script>var http = new XMLHttpRequest(); http.open('POST', 'example.com/my_account/delete.php', true);</script>";
$this->assertEquals($codeAfter, Filter::XSSFilter($codeBefore));
}