我已经阅读了很多有关此内容的网页,但我无法让它发挥作用 我的服务器上有一个文件,需要在导入文件后删除。
该文件是.csv文件,使用fopen
打开。
导入后,文件以fclose
关闭。
现在我要删除文件:
chown($filepath, 666);
if (file_exists($filepath))
{
if (unlink($filepath))
{
echo "success";
}
else
{
echo "fail";
}
}
else
{
echo "file does not exist";
}
它始终与file does not exist
失败,但我不知道为什么。
我使用完全相同的路径导入
微米。
答案 0 :(得分:0)
您无法使用网址
直接访问该文件$filepath = 'http://www.xxx.nl/files/testing.csv';
要访问您的文件,请使用
$filepath = ./files/testing.csv
所以文件结构将是
- file
- testing.csv
- index.php