第一步:用记事本打开Lib\Common\common.php文件
找到
// 获取某图片的访问地址
function ff_img_url($file,$content,$number=1){
if(!$file){
return ff_img_url_preg($file,$content,$number);
}
if(strpos($file,'http://') !== false){
return $file;
}
$prefix = C('upload_http_prefix');
if(!empty($prefix)){
return $prefix.$file;
}else{
return C('site_path').C('upload_path').'/'.$file;
}
}
// 获取某图片的缩略图地址
function ff_img_url_small($file,$content,$number=1){
if(!$file){
return ff_img_url_preg($file,$content,$number);
}
if(strpos($file,'http://') !== false){
return $file;
}
$prefix = C('upload_http_prefix');
if(!empty($prefix)){
return $prefix.$file;
}else{
return C('site_path').C('upload_path').'-s/'.$file;
}
}
然后替换为
// 获取某图片的访问地址
function ff_img_url($file,$content,$number=1){
if (!$file) {
$file = ff_img_url_preg($file, $content, $number);
if (!empty($file)) {
return $file;
}else {
return __PUBLIC__ . '/images/nophoto.jpg';
}
}
if(strpos($file,'http://') !== false){
return $file;
}
if(strpos($file,'httpf://') !== false){
return __PUBLIC__ . '/images/nophoto.jpg';
}
$prefix = C('upload_http_prefix');
if(!empty($prefix)){
return $prefix.$file;
}else{
return C('site_path').C('upload_path').'/'.$file;
}
}
// 获取某图片的缩略图地址
function ff_img_url_small($file,$content,$number=1){
if (!$file) {
$file = ff_img_url_preg($file, $content, $number);
if (!empty($file)) {
return $file;
}else {
return __PUBLIC__ . '/images/nophoto.jpg';
}
}
if(strpos($file,'http://') !== false){
return $file;
}
if(strpos($file,'httpf://') !== false){
return __PUBLIC__ . 'images/nophoto.jpg';
}
$prefix = C('upload_http_prefix');
if(!empty($prefix)){
return $prefix.$file;
}else{
return C('site_path').C('upload_path').'-s/'.$file;
}
}
第二步:清空缓存,如果是静态还需要重新生成。
这样在模版中就不需要用onerror了,已经用php直接判断了。
- 相关文章
- 查看评论:(0)
【已经有0位大神发现了看法】
- [分享]宝塔面板 v7.8.0 降级 v7.7.0 教程及解除强制绑定手机的方法 2022-01-14
- [分享]全局标签/条件判断(If Switch Empty),飞飞CMS2.0标签 2013-11-28
- [分享]导航菜单循环标签,飞飞CMS2.0标签 2013-11-28
- [分享]友情链接循环标签,飞飞CMS2.0标签 2013-11-28
- [分享]留言模块调用标签,飞飞CMS2.0标签 2013-11-28
- [分享]评论模块调用标签,飞飞CMS2.0标签 2013-11-28
- [分享]自定义标签使用方法及定义,飞飞CMS2.0标签 2013-11-28
- [分享]视频(内容页/播放页)普通标签,飞飞CMS2.0标签 2013-11-28
- [分享]视频(频道页/栏目页)普通标签,飞飞CMS2.0标签 2013-11-28
- [分享]资讯(万能数据/循环调用)标签,飞飞CMS2.0标签 2013-11-28
发表评论: