Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 PHP 从数据库中删除图像。
我使用以下代码:
$del=$_GET['picid']; $ins="delete from photos where photo_id='$del'"; $result=mysql_query($ins);
但图像仅在 MySQL 表中被删除,而不是在服务器中
我需要从 MySQL 表和服务器中删除图像
Mysql DB > 表 > 字段
你的问题真的没有意义。如果您要做的是从文件系统中删除文件(即从磁盘上删除),那么您将需要使用unlink。
要从服务器中删除图像,请使用unlink():
unlink()
unlink("images/myImage.png");
如果您要从服务器上删除文件,那么您必须使用unlink($image_path);PHP 中的函数才能删除该文件。
unlink($image_path);