PHP封装PDO之单例模式实现增删改查
DB类class Db{
//存储 类的实例化对象
private static $instance;
//存储pdo类的实例化
private $pdo;
//存储PDO...
•技术分享
0