gpt4 book ai didi

php - 上传文件后未获取正确的路径

转载 作者:行者123 更新时间:2023-11-29 11:13:58 25 4
gpt4 key购买 nike

我正在服务器上上传一个文件并将其路径存储在 codeigniter 的数据库中,但是在上传后我没有获得正确的路径

我使用的代码是

$config['upload_path']          = './uploads/';
$config['allowed_types'] = 'doc|docx|pdf';
$config['max_size'] = 100;
$config['max_width'] = 1024;
$config['max_height'] = 768;

$this->load->library('upload', $config);
$this->upload->do_upload('userfile');
$data = array('upload_data' => $this->upload->data());

$image_path = $data['upload_data']['full_path'];

我希望将 $image_path 中获取的路径保存在数据库内。

Now the path that i get is something like this

/home/litehepn/public_html/project_name/uploads/xyz.docx

But the path that i want is

project_name/uploads/xyz.docx

谁能告诉我如何获得正确的路径

最佳答案

这是正确的路径。因为您已将文件存储在该主目录中。但是您可以使用 chop($url,"/home/litehepn/public_html/"); 来获取它。

关于php - 上传文件后未获取正确的路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40071949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com