你说得对,有些人真的又瞎又傻。
问问题
61 次
1 回答
0
我认为您的问题是文件权限。
您必须更改图像的文件权限(追逐中的 0644 或 0777)。
请阅读: http: //php.net/manual/en/function.chmod.php。
您可以使用 unlink() 函数在 PHP 中删除图像。
unlink('path/to/file.jpg');
请参阅http://php.net/manual/en/function.unlink.php。
编辑:
你也可以试试这个:
if(is_writable($filename))
{
取消链接($文件名)
} 别的 {
echo '此时此文件无法删除';
chmod("你的 $filename 路径", 0777);
取消链接($文件名);
}
和
if (file_exists('YOUR PATH OF $filename')) {
echo '文件存在... Sorrrrrrrrrry!!!!!!!!!!!!';
}
于 2013-06-23T15:26:47.320 回答