致命错误:未捕获错误:调用未定义函数mysql_pconnect()

时间:2017-08-10 02:14:17

标签: php mysql codeigniter

  

致命错误:未捕获错误:在D:\ xampp \ htdocs \ IKM \ system \ database \ drivers \ mysql \ mysql_driver.php:91

中调用未定义函数mysql_pconnect()
function db_pconnect()
{
    if ($this->port != '')
    {
        $this->hostname .= ':'.$this->port;
    }

    return @mysql_pconnect($this->hostname, $this->username, $this->password);
}

1 个答案:

答案 0 :(得分:0)

此功能自PHP 7.0起已删除,在PHP 5.5中已弃用。您可能正在使用PHP 7.0。

要解决此问题,您需要使用mysqli扩展名或PDO扩展名。