我正在尝试扩展位于 kohana\modules\database\classes\Kohana\Database 中的 Kohana_Database_PDO
为此,我在 kohana\application\classes\database 的 PDO.php 文件中创建了一个文件
我正在使用的代码是
<?php defined('SYSPATH') OR die('No direct script access.');
/**
* PDO database connection.
*
* @package Application
* @category Drivers
*/
class Application_Database_PDO extends Kohana_Database_PDO {} // End Database_PDO
我得到错误:
ErrorException [致命错误]:找不到类 'Database_PDO' MODPATH\database\classes\Kohana\Database.php [78]
// Set the driver class name
$driver = 'Database_'.ucfirst($config['type']);
// Create the database connection instance
$driver = new $driver($name, $config); <- highlighted line
// Store the database instance
Database::$instances[$name] = $driver;
}
- {PHP 内部调用} » Kohana_Core::shutdown_handler()
谢谢你的帮助 :)