大家好,我在 codeigniter 中上传 doc 和 docx 文件时遇到了麻烦。我在 config/mime.php 中检查了 mime 类型。谁能告诉我有什么问题吗?以下是我的 mime.php 文件。
'doc' => 'application/msword',
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip'),
'word' => array('application/msword', 'application/octet-stream'),
Run Code Online (Sandbox Code Playgroud) 我尝试使用以下代码设置 cookie,但无法获取 cookie。
if($this->input->post('remember')){
$this->load->helper('cookie');
$cookie = array(
'name' => 'remember_me',
'value' => 'test',
'expire' => '300',
'secure' => TRUE
);
set_cookie($cookie);
}
Run Code Online (Sandbox Code Playgroud)
以下代码用于获取cookie
$cookie= get_cookie('remember_me');
var_dump($cookie);
Run Code Online (Sandbox Code Playgroud)
任何人都可以告诉我有什么问题吗?提前致谢。