|
基于 https://github.com/chriskacerguis/codeigniter-restserver 创建了api,其中发送图片的地方代码如下
function uploadimg_post()
{
header("Content-type:text/html;charset=utf-8");
$foldername = '../uploads/images/';
if(!file_exists($foldername) && !is_dir($foldername)) {
mkdir($foldername, 0755, true);
}
$config['upload_path'] = $foldername;
$config['allowed_types'] = '*';
$config['max_size'] = '100';
$this->load->library('upload', $config);
$this->upload->initialize($config);
$field_name = "photofile";
$this->upload->do_upload($field_name)
}
但总是获取不到内容,使用 $_FILE["photofile"]也不能正常工作,请问这个问题是什么原因?
|
|