如何取消链接具有 www-data 所有权的文件? [Laravel]
How to unlink files which has www-data ownership? [Laravel]
我在 /public/images/ 目录中有文件。它不允许我从目录中取消链接文件。
试试这个:
if(file_exists($data->location)) {
unlink($data->location);
// this path should be public_path() not the url site path
}
Note
:- unlink 函数允许 public 或存储路径不允许站点或 url解链路径
例如:
允许这条路径:
C:\xampp\htdocs\laravel\public
不允许这条路径:
我在 /public/images/ 目录中有文件。它不允许我从目录中取消链接文件。
试试这个:
if(file_exists($data->location)) {
unlink($data->location);
// this path should be public_path() not the url site path
}
Note
:- unlink 函数允许 public 或存储路径不允许站点或 url解链路径
例如:
允许这条路径:
C:\xampp\htdocs\laravel\public
不允许这条路径: