/**
* 删除图片文件
*
* @param unknown $img_path
*/
function removeImageFile($img_path)
{
// 检查图片文件是否存在
if (file_exists($img_path)) {
return unlink($img_path);
} else {
return false;
}
}
小小柠檬
/**
* 删除图片文件
*
* @param unknown $img_path
*/
function removeImageFile($img_path)
{
// 检查图片文件是否存在
if (file_exists($img_path)) {
return unlink($img_path);
} else {
return false;
}
}