1
我正在爲Codeigniter翻譯庫中的自定義類,但我遇到了這個問題。codeigniter將對象庫傳遞到另一個庫
require_once "a.php";
require_once "b.php";
function __construct() {
$this->b = new b();
}
我使用的庫加載器改變了require
和construct
。
function __construct() {
$this->CI =& get_instance();
$this->CI->load->library('a');
$this->CI->load->library('b');
}
,但現在我需要這個功能轉換,但我不知道在哪個模式下能做到這一點
public function addRecipient($first,$second){
$a= new a($first); // ??? new library a ?
$a->header = 1;
$a->set($second);
$this->b->add($a); // passing object library a???
return $a;
}