我怎样才能实现看起来像:
if (isset($this->session->flashdata('user_profile'))) {}
没有:
Fatal error: Call to a member function flashdata() on a non-object in ...
问题是,当那个东西没有被设置而不是像人们期望的那样继续时,它会返回一个错误。如果设置好了,一切正常。
...
我也试过:
$tmp = $this->session->flashdata('user_profile');
if ($tmp) {
但无济于事。