class Home extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper('MY_others');
if (whether_logged_in()==TRUE)
{
$data['login'] = TRUE;
}
else
{
$data['login'] = FALSE;
}
}
public function index()
{
[color=Red]//怎样访问到__construct里的$data
//加载页头
$this->load->view('includes/v_header',[color=Red]$data[/color]);
}