新增/编辑页面,若远程文件不存在,则删除数据库文件字段记录
$id = \request('article');
if($id){$res = Article::find($id);
if($res->photo != ''){
$handle= @fopen('http://static.abc.com/'.$res->photo,'r');
if (!$handle) {
$res->photo = null;
$res->save();
}
}
}