我正在尝试使用unlink方法从文件中删除图片。
我可以使unlick方法使用相对路径,所以我尝试使用绝对路径。
以下是代码:
echo '<td><img src="images/' , $tableau[$i] , '" /></a></td>',
"<td><form method=post>
<input type=submit name=delete value=Supprimer>
</form></td>";
$filepath='\images\ '.$tableau[$i].'';
$path=dirname(__FILE__) . $filepath ;
echo $path;
if(isset($_POST['delete']))
{
unlink ($path);
}
但是这段代码给出了:
D:\logiciels\XAMPP\htdocs\upload-test\images\ 1.jpg
Warning: unlink(D:\logiciels\XAMPP\htdocs\upload-test\images\ 1.jpg): No such file or directory in D:\logiciels\XAMPP\htdocs\upload-test\test.php on line 62
为什么在我放一个绝对的文件路径时会与test.php文件路径进行比较?
然后我尝试了一些更简单的方法:只查看文件是否存在:
<?php
$filepath='\images\ 1.jpg';
$filename=dirname(__FILE__) . $filepath ;
echo $filename;
if (is_file($filename)) {
echo 'File exists';
} else {
echo 'File does not exist';
}
?>
我明白了:
D:\logiciels\XAMPP\htdocs\upload-test\images\ 1.jpg File does not exist
但该文件确实存在,我可以在Windows中以相同的路径执行它。
所以我无法解决问题!
提前感谢您的帮助。
答案 0 :(得分:0)
尝试删除space
之类的
<?php
$filepath='\images\1.jpg';
$filename=dirname(__FILE__) . $filepath ;
echo $filename;
if (is_file($filename)) {
echo 'File exists';
} else {
echo 'File does not exist';
}
?>
答案 1 :(得分:0)
现在我们来了:
if (is_file($path)) {
echo 'File exists';
} else {
echo 'File does not exist';
}
echo '<img src=" '.$path.' "/>';
我得到一个断开的链接,旁边没有图像显示&#34;文件存在&#34;