gpt4 book ai didi

php - 代码点火器错误 : Call to undefined function mysql_pconnect()

转载 作者:IT王子 更新时间:2023-10-28 23:44:26 24 4
gpt4 key购买 nike

我已将我的 codeigniter 版本从 2.2.4 逐步更新到 3.0.6,但出现错误:

An uncaught Exception was encountered

Type: Error

Message: Call to undefined function mysql_pconnect()

Filename: path-to-project\system\database\drivers\mysql\mysql_driver.php

Line Number: 135

Backtrace:

File: path-to-project\application\controllers\Main.php
Line: 10
Function: __construct

File: path-to-project\index.php
Line: 315
Function: require_once

我刚刚用新的替换了我的 index.php 文件和系统目录,并根据教程对我的应用程序进行了一些更改。

这是主 Controller :

class Main extends CI_Controller {

function __construct()
{
parent::__construct();
$this->load->model('main_model');
}
}

是什么导致了这个问题?!

this is the link教程。

最佳答案

Deprecated features in PHP 5.5.x :

The original MySQL extension is now deprecated, and will generate E_DEPRECATED errors when connecting to a database. Instead, use the MySQLi or PDO_MySQL extensions.

您正在使用已弃用的 mysql dbdriver。找到 config/database.php 文件并将 dbdriver 更改为使用 mysqli :

$db['default']['dbdriver'] = 'mysqli'; 

关于php - 代码点火器错误 : Call to undefined function mysql_pconnect(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36822462/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com