gpt4 book ai didi

php - CI 中的取消链接函数抛出警告

转载 作者:行者123 更新时间:2023-12-02 07:08:16 25 4
gpt4 key购买 nike

我正在使用 codeigniter 2。当使用 unlink() php 函数时,它会抛出错误。这是我在 CI 中删除文件的模型函数:

    function delete($file)
{
$delete_files = $this->gallery_path_url.$file;
if(!empty($delete_files)) {
unlink($delete_files);
}
}

点击删除链接时,显示警告:

unlink() [function.unlink]: http 不允许取消链接

是否有取消链接的替代功能以避免警告

最佳答案

您正在尝试使用类似 http://thing/I/want/deleted 的地址删除文件。你不可以做这个。而是使用像 /path/to/file/on/my/computer/

这样的地址

关于php - CI 中的取消链接函数抛出警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8722780/

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