这是我目前拥有的:
$pic_path
提供这样的路径:path/to/img
$toid
是一个数字,和 like 一样pic_path
,前后没有斜线。
$file_path = glob( $pic_path . "/" . $toid . ".*" );
array_map('unlink', $file_path);
我要删除的图片确实在指定路径中。
我试过使用:
$file_path = glob( $_SERVER['DOCUMENT_ROOT'] . "/" . $pic_path . "/" . $toid . ".*" );
array_map('unlink', $file_path);
也试过:
$file_path = glob($pic_path . "/" . $toid . ".*");
array_walk($file_path, function ($file) {
unlink($file);
});
而且我还尝试将 * 通配符替换为实际的图像扩展名。
任何想法?