我正在开始一个新项目,并使用我首选的 PHP Zend 框架和 MySQL 数据库设置。
由于某种原因,我无法正确设置 Zend_Db_Adapter,因此它将成功连接到数据库。我已经在 MySQL 中设置了我的数据库,并且可以使用 mysql_connect() 连接到它,但不能使用我过去项目中使用的代码?真的很奇怪!
这是我正在使用的代码...
require_once 'Zend/Registry.php';
require_once 'Zend/Db/Adapter/Pdo/Mysql.php';
// Set the database connection information
$params = array('host' =>'localhost',
'username' =>'root',
'password' =>'12345',
'dbname' =>'testdb');
// Assign the database connection to the registry
$db = new Zend_Db_Adapter_Pdo_Mysql($params);
$db->setFetchMode(Zend_Db::FETCH_OBJ);
Zend_Registry::set('db',$db);
请记住,当我使用 mysql_connect() 时,上述参数可以正常工作,但是每当我尝试使用上述参数时,都会出现控制器异常错误?