为了账号安全,请及时绑定邮箱和手机立即绑定

代码标志从文件夹中删除文件

代码标志从文件夹中删除文件

PHP
holdtom 2022-08-19 10:05:38
请任何人都可以帮助我,我想从文件夹代码中删除文件,这是我的控制器 public function delete($id = false) {        if (!$id)            show_404();        $this->{$this->model}->{$this->_primary_key} = $id;        $data['item'] = $this->{$this->model}->get();        if (!$data['item'])            show_404();        $this->{$this->model}->delete();        redirect('admin/' . $this->module);    }    public function image($var, $id) {        $config['upload_path'] = './cdn/sliders/';        $config['allowed_types'] = 'gif|jpg|png|jpeg';        $this->load->library('upload', $config);        if ($this->upload->do_upload('image')) {            $data = $this->upload->data();            if ($data['file_name'])                $this->{$this->model}->image = $data['file_name'];        }        return true;    }
查看完整描述

3 回答

?
胡说叔叔

TA贡献1804条经验 获得超8个赞

就像


public function delete_video($id)

{

    $this->db->where('id', $id);

    $this->db->select('video');

    $video_name = $this->db->get('vs_videos')->row_array();

    if ($video_name) {

        @unlink('./vs_asset/videos/' . $video_name['video']);


        $this->db->where('id', $id)

            ->delete('vs_videos');

        $result = $this->db->affected_rows();

        return $result;

    } else {

        return;

    }

}


查看完整回答
反对 回复 2022-08-19
?
DIEA

TA贡献1820条经验 获得超2个赞

$filename = file_name_with_full_path

您可以使用unlink($filename)函数在php中删除文件

请查看以下链接了解详情

https://www.w3schools.com/php/func_filesystem_unlink.asp


查看完整回答
反对 回复 2022-08-19
?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

非常感谢我得到的答案


这是它是如何工作的。


public function delete($id = null) {


        if (!$id)

            show_404();

        $this->{$this->model}->{$this->_primary_key} = $id;

        $path = './cdn/projects/';

        $data['item'] = $this->{$this->model}->get();

            if (!$data['item'])

                show_404();

        @unlink($path.$data['item']->image);

        $this->{$this->model}->delete();

        redirect('admin/' . $this->module);

    }


查看完整回答
反对 回复 2022-08-19
  • 3 回答
  • 0 关注
  • 88 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信