若风情殇
2014-12-03 21:19
class DB {
public static $db;
public static function init($dbtype, $config) {
self::$db = new $dbtype;
self::$db->connect($config);
}
老师能问一下这段代码的意思么?不是应该实例化对象DB的么?怎么是new $dbtype
new $dbtype 这里面 例如 $dbtype 的值是 mysql 那就是 new mysql()
非常感谢!!!!
MVC架构模式分析与设计
82396 学习 · 929 问题
相似问题