<?php/*** Mock library to add testing features to Session driver library*/class Mock_Libraries_Session extends CI_Session {/*** Simulate new page load*/public function reload(){$this->_flashdata_sweep();$this->_flashdata_mark();$this->_tempdata_sweep();}}/*** Mock cookie driver to overload cookie setting*/class Mock_Libraries_Session_cookie extends CI_Session_cookie {/*** Overload _setcookie to manage $_COOKIE values, since actual cookies can't be set in unit testing*/protected function _setcookie($name, $value = '', $expire = 0, $path = '', $domain = '', $secure = FALSE, $httponly = FALSE){if (empty($value) OR $expire <= time()){unset($_COOKIE[$name]);}else{$_COOKIE[$name] = $value;}}}class Mock_Libraries_Session_native extends CI_Session_native {}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。