sql >> Base de Datos >  >> RDS >> Mysql

La función mysql_escape_string() está en desuso use mysql_real_escape_string() Codeigniter

Si está utilizando PHP 5.4, la función mysql_escape_string() está obsoleta. Por lo tanto, debe realizar algunos cambios en el archivo del controlador mysql. Vaya a system\database\drivers\mysql\mysql_driver.php y busque escape_str función y reemplace el código de funciones con este código:

/**
  * Escape String
  *
  * @param string
  * @param bool whether or not the string will be used in a LIKE condition
  * @return string
  */
 public function escape_str($str, $like = FALSE)
 {
  if (is_array($str))
  {
   foreach ($str as $key => $val)
      {
    $str[$key] = $this->escape_str($val, $like);
      }

      return $str;
     }

  $str = is_resource($this->conn_id) ? mysql_real_escape_string($str, $this->conn_id) : addslashes($str);

  // escape LIKE condition wildcards
  if ($like === TRUE)
  {
   return str_replace(array($this->_like_escape_chr, '%', '_'),
      array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
      $str);
  }

  return $str;
 }

Puede que te ayude...