1. ホーム
  2. php

[解決済み] 非推奨:mysql_real_escape_string()。mysql 拡張モジュールは非推奨で、将来的に削除される予定です: mysqli あるいは PDO を使ってください [重複] 。

2022-02-07 12:26:11

質問

<ブロッククオート

実は、mysql_real_escape_stringに代わるものを探しているのです。 このエラーを解決します。 php 5.4 では完璧に動作していましたが、 php 5.5 では動作しなくなりました。

$this->mysqli = new mysqli($this->host, $this->user, $this->pass, $this->name);
// in class user
public function __set($p_sProperty, $p_vValue)
        {   
            switch($p_sProperty)
            {    
// this is marked as the error
case "Email":
             $this->Email = **mysql_real_escape_string**($p_vValue); 
                break;
}
}

解決方法は?

MySQLiを使用しているので mysqli_real_escape_string() :

$this->Email = $this->mysqli->real_escape_string($p_vValue);