这是我的一般 php 页面:
<?php
require_once('includes.php');
require_once('cms.class.php');
.....
rest of the page
?>
在includes.php
一个名为 $db 的 pro 对象中启动,我想在指定的类中使用它cms.class.php
包括.php:
$db = new PDO('mysql:host=localhost;dbname=xxxxx','xxxxx','xxxxxx');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
如何在我的类中使用此数据库对象,而无需在多个地方存储我的凭据?