0
我正在與wiredesignz模塊化擴展codeigniter一起工作,我想知道是否有可能從模塊的控制器訪問常規codeigniter控制器的公共屬性 例如,這是一個常規的ci控制器從hmvc模塊訪問控制器公共控制器屬性
<?php
class Dog extends CI_Controller {
public $name;
function __construct()
{
$this->name = "xyz";
}
}
這個模塊控制器
<?php
class Test extends MX_Controller {
function get_name()
{
//access the $name property of the dog controller here
}
}
你真的嘗試過嗎?如果我沒有記錯,MX_Controller擴展了CI_Controller,所以公共和受保護的變量應該被繼承。看看這個答案:http://stackoverflow.com/a/6456965/844726 – swatkins