Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来访问 CakePHP 用来调用数据库的数据库对象。
我有一个在 CakePHP 之外编写的使用数据库的类。与其打开它自己的连接,我认为只使用一个可能已经打开的连接会很好。
我将 CakePHP 设置为使用 MySQLi,并且我构建的类也使用 MySQLi。
您可以使用 DboSource 类来访问数据库和进行数据库调用。 DboSource 类 API 文档
getConnection
获取底层连接对象。
$db= &ConnectionManager::getDataSource('datasourceName'); // as defined in DATABASE.php