コード例 #1
0
ファイル: xss.php プロジェクト: dimns/mflphp
/**
 * Очистка данных для защиты от XSS
 *
 * @param string $str Строка для очистки
 *
 * @return string Очищенная строка
 *
 * @version 02.08.2016
 * @author Дмитрий Щербаков <*****@*****.**>
 */
function xss($str)
{
    static $anti_xss;
    if (is_object($anti_xss) === false) {
        $anti_xss = new \voku\helper\AntiXSS();
    }
    return $anti_xss->xss_clean($str);
}
コード例 #2
0
ファイル: Application.php プロジェクト: teotong/TeoPHP
 /**
  * xss过滤(一般用作富文本) voku/anti-xss
  * @param $harm_string
  * @return array|bool|string
  */
 public static function getXss($harm_string)
 {
     $antiXss = new \voku\helper\AntiXSS();
     return $antiXss->xss_clean($harm_string);
 }