如何在 codeigniter 中使用工厂类调用。我一直在尝试将以下内容实现为库
class MyClass {
public $_class = "Factory";
/*
===================================
On Create
=================================== */
public function __construct() {
$this->_db =& get_instance();
}
//other methods
}
class Factory {
private $_db;
/*
===================================
On Create
=================================== */
public function __construct($data, $db) {
$this->_db = $db;
}
//factory methods
}
$obj = new MyClass();
$res = $obj->call_method_MyClass();
比说我对检索的数据进行循环
foreach($res as $Factory){
$Factory->method_factory();
}
但我没有得到工厂的实例