帝国CMS熊掌号缩略图调用方法

熊掌号缩略图调用方法<?php
$str=$navinfor[&#39;newstext&#39;];
$str = str_replace(&#39;https://xxxxxhttps://www.11px.cn/d/file/&#39;,&#39;https://www.11px.cn/d/file/&#39;,$str);
$str

[时间:10-19]    [浏览:]    [放入收藏夹]    [查看详情]

熊掌号缩略图调用方法

<?php
$str=$navinfor['newstext'];
$str = str_replace('https://xxxxxhttps://www.11px.cn/d/file/','https://www.11px.cn/d/file/',$str);
$str = str_replace('https://www.11px.cn/d/file/','https://xxxxxxhttps://www.11px.cn/d/file/',$str);
preg_match_all('/https:.*?(jpg|gif|png|bmp)/' ,$str, $img);
$num=count($img[0]);
if($num>=3){
        echo '"'.$img[0][0].'"'.',';
        echo '"'.$img[0][1].'"'.',';
        echo '"'.$img[0][2].'"';
}
else if($num>=1){
        echo '"'.$img[0][0].'"'.',';
}
else{ 
}
?>

调用newstext字段,把所有图片绝对路径替换成https://www.11px.cn/d/file/相对路径,然后在把相对链接替换为统一的绝对路径,下面开始循环数组。如果图片数量大于等于3,就输出3张图,相反只输出一张图。

  本文转载自:精准像素:11px.cn ,感谢作者分享实用知识


标签: