我正在使用unlink()
删除服务器上存在的图像并获得权限
尝试了以下代码。
$exactPath = $siteurl.'/'.$path;
if (file_exists($exactPath)) {
chmod($exactPath, 0777);
@unlink(realpath($exactPath));
}
// See if it exists again to be sure it was removed
if (file_exists($exactPath)) {
echo "Problem deleting " . $exactPath;
} else {
echo "Successfully deleted " . $exactPath;
}
显示结果为已成功删除,但图片仍显示在服务器上?
答案 0 :(得分:1)
很可能你正在修改图像文件,尝试将图像文件夹chmod到777