东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国6.0使用字段处理函数图片alt自动加标题

2010-04-03 站长 站长日志

默认情况下,图片上传的时候叫什么名字,alt里面就是什么...
为了SEO有时都要手动把里面改成想要的,比如标题
现在使用字段处理函数来解决
把一下代码放入e/userfun.php文件里面

//替换正文IMG里的ALT内容   
function user_imgalt($mid,$f,$isadd,$isq,$value,$cs){   
    $title=$_POST['title'];   
    $htmls=$value;   
    $pattern = "/<img[^>]+>/";    
    preg_match_all($pattern, $htmls, $matches);    
    for ($i=0; $i<=count($matches[0]); $i++) {   
       preg_match_all("/alt=".+?"/",$matches[0][$i],$altimg);    
        $t_alt=count($altimg[0]);   
        if($t_alt==0){   
            $htmls=str_replace("<img","<img alt="{$title}"",$htmls);   
        }else{   
            $htmls=str_replace($altimg[0][0],"alt="{$title}"",$htmls);   
        }   
    }      
        return $htmls;   
}   

文章评论