php 正在获取以下格式的图像,同时回显$_POST['img']
http://localhost/uploads/images/1533033949-8.jpg
但是为什么取消链接不起作用 -
// Get src.
$img = $_POST["img"];
// Check if file exists.
if (file_exists(getcwd() . $img)) {
// Delete file.
unlink(getcwd() . $img);
echo "Deleted";
}
我尝试直接测试,但不起作用
unlink($img)