我在 CodeIgniter 框架中创建了一个表单,该表单使用 CodeIgniter 手册(http://codeigniter.com/user_guide/libraries/file_uploading.html)中的教程成功上传了图像,但是当我尝试获取文件名时,以下代码只是返回'resize/user/w'。任何想法表示赞赏!
$type = 'user';
$imageData = $this->upload->data();
foreach ($imageData as $info) {
$url = 'resize/' . $type . '/' . $info['file_name'];
}
echo $url;