Codeigniter查看url?

发布于 2024-09-30 02:04:03 字数 707 浏览 6 评论 0原文

如果我使用绝对网址,我会将图像上传到文件夹。 但是如何使用绝对url呢?

function do_upload()
 {
  $config['upload_path'] = 'upload/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '100';
  $config['max_width']  = '1024';
  $config['max_height']  = '768';

  $this->load->library('upload', $config);

  if ( ! $this->upload->do_upload())
  {
   $error = array('error' => $this->upload->display_errors());

   $this->load->view('upload_form', $error);
  } 
  else
  {
   $data = array('upload_data' => $this->upload->data());

   $this->load->view('upload_success', $data);
  }
 } 

以上是我的控制器代码。 我尝试上传,但无法判断该文件夹应该位于哪个路径?它应该在根目录中、在控制器中还是在视图中?

i cal upload images to folder if i use absolute url.
but how to use absolute url?

function do_upload()
 {
  $config['upload_path'] = 'upload/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '100';
  $config['max_width']  = '1024';
  $config['max_height']  = '768';

  $this->load->library('upload', $config);

  if ( ! $this->upload->do_upload())
  {
   $error = array('error' => $this->upload->display_errors());

   $this->load->view('upload_form', $error);
  } 
  else
  {
   $data = array('upload_data' => $this->upload->data());

   $this->load->view('upload_success', $data);
  }
 } 

The above is my code for controller.
i try to upload, but i can't judge in which path the folder should be located? either it should be in root or in controller or in view?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女猫性小仙女 2024-10-07 02:04:03

它应该扎根。

It should go in root.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文