此代码适用于除 Internet Explorer 8 以外的所有浏览器
$this->input->set_cookie(array(
'name' => 'test_cookie',
'value' => 'hello from cookie',
'expire' => 360000000,
'secure' => FALSE
));
echo get_cookie('test_cookie');
如何解决这个问题呢?为什么没有set_cookie?