sql >> Databáze >  >> RDS >> Mysql

codeIgniter místo toho použijte mysql_real_escape_string(). Problém s připojením k databázi

Nebojte se měnit základní soubory, stačí změnit FCPATH/system/database/drivers/mysqli/mysqli_driver.php

function escape_str($str, $like = FALSE)
{
    if (is_array($str))
    {
        foreach ($str as $key => $val)
        {
            $str[$key] = $this->escape_str($val, $like);
        }

        return $str;
    }

    if (function_exists('mysqli_real_escape_string') AND is_object($this->conn_id))
    {
        $str = mysqli_real_escape_string($this->conn_id, $str);
    }
    else
    {
        $str = addslashes($str);
    }

    // escape LIKE condition wildcards
    if ($like === TRUE)
    {
        $str = str_replace(array('%', '_'), array('\\%', '\\_'), $str);
    }

    return $str;
}

Měl jsem stejný problém

Lepší řešení -> https://ellislab.com/forums/viewthread/228288/ "stated in github that it will be fixed in CodeIgniter 3.0 the fix already exists in that repository"



  1. Plánování kapacit pomocí údajů o výkonu

  2. Chyba příliš mnoha otevřených souborů na Ubuntu 8.04

  3. Jak mohu vyhledávat podle emotikonů v MySQL pomocí utf8mb4?

  4. Instalace pg -v 0.17.1