サーバー上のファイルを削除しようとしています。以下は私が使用するコードです。
function ServerDel($file){
$file = realpath($file);
echo ($file);
$fh = fopen($file, 'w') or die("can't open file");
fclose($fh);
if(unlink($file))
echo"Delete the file successfully.";
else
echo "Failed to delete.";
}
しかし、コードを実行した後、ファイルはまだ存在し、0KB になります。誰でもこれを回避する方法を知っていますか?