全域變數用config去做取代...
在application/config/ 裡面加一個叫做 global.php
//=====global.php=====//
代碼: 選擇全部
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$config['page_var'] = array("a"=>"11");
/* End of file global.php */
/* Location: ./application/config/global.php */
//=====global.php=====//
autoload裡面加
代碼: 選擇全部
$autoload['config'] = array('global');
//=====welcome.php===//
代碼: 選擇全部
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function index()
{
print_r( $this->config->item('page_var'));
$a=array("jj"=>"aaa");
$this->config->set_item('page_var',$a);
print_r( $this->config->item('page_var'));
}
}
沒有留言:
張貼留言