Вы должны использовать конструктор вместо index ().
class MyController extends CI_Controller {
public $variable = array();
function __construct() {
parent::__construct();
$this->variable['name'] = "Sam";
$this->variable['age'] = 19;
}
function index(){
}
function another_function(){
print_r($this->variable);
}
}
Если вы хотите позвонить index()
, а затем позвонить another_function()
, попробуйте использовать класс CI session .
class MyController extends CI_Controller {
public $variable = array();
function __construct() {
parent::__construct();
$this->load->library('session');
if ($this->session->userdata('variable')) {
$this->variable = $this->session->userdata('variable');
}
}
function index(){
$this->variable['name'] = "Sam";
$this->variable['age'] = 19;
$this->session->set_userdata('variable', $this->variable);
}
function another_function(){
print_r($this->variable);
}
}