我目前正在使用PHPCS Security Audit清理代码,其中一行显示“可能在回显中检测到XSS”,我在Google上呆了3个小时,仔细阅读了PHP手册,找出解决方案,没有任何解决方案,如果有人能帮助我,我将非常感谢,谢谢。
引起错误的线是回声线
try {
$this->conn = new \PDO("mysql:host=" . $this->db_host . ";dbname=" . $this->db_name, $this->username, $this->password);
} catch (PDOException $exception) {
echo "Connection error: " . $exception->getMessage();
}
请注意,代码可以正常工作,只是有一种更好的方法来输出我想从中学习的回声线,谢谢。