|
@@ -58,6 +58,7 @@ function obtainalt($newalt) |
|
|
{
|
|
|
{
|
|
|
global $dsql, $id, $aid;
|
|
|
global $dsql, $id, $aid;
|
|
|
$myid = isset($id) ? $id : $aid;
|
|
|
$myid = isset($id) ? $id : $aid;
|
|
|
|
|
|
$title = isset($row['title']) ? $row['title'] : '';
|
|
|
$row = $dsql->GetOne("SELECT title FROM `#@__archives` WHERE id='$myid'");
|
|
|
$row = $dsql->GetOne("SELECT title FROM `#@__archives` WHERE id='$myid'");
|
|
|
//图片注释自动为标题
|
|
|
//图片注释自动为标题
|
|
|
$newalt = str_ireplace(array('alt=""', 'alt=\'\'', 'title=""', 'title=\'\''), "", $newalt);
|
|
|
$newalt = str_ireplace(array('alt=""', 'alt=\'\'', 'title=""', 'title=\'\''), "", $newalt);
|
|
@@ -65,6 +66,7 @@ function obtainalt($newalt) |
|
|
//去掉图片宽度和高度
|
|
|
//去掉图片宽度和高度
|
|
|
$newalt = preg_replace("/style=\"width\:(.*)\"/", "", $newalt);
|
|
|
$newalt = preg_replace("/style=\"width\:(.*)\"/", "", $newalt);
|
|
|
//去掉结尾
|
|
|
//去掉结尾
|
|
|
|
|
|
$newalt = str_ireplace(" ", " ", $newalt);
|
|
|
$newalt = str_ireplace(" /", "", $newalt);
|
|
|
$newalt = str_ireplace(" /", "", $newalt);
|
|
|
return $newalt;
|
|
|
return $newalt;
|
|
|
}
|
|
|
}
|
|
|