熊掌号缩略图调用办法

<?php
$str=$navinfor['newstext'];
$str=str_replace('https://xxxxxhttp://www.11px.cn/d/file/','http://www.11px.cn/d/file/',$str);
$str=str_replace('http://www.11px.cn/d/file/','https://xxxxxxhttp://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].'"';
}
elseif($num>=1){
echo'"'.$img[0][0].'"'.',';
}
else{
}
?>

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

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帝国CMS熊掌号缩略图调用方法发布于2022-06-23 07:43:14

相关推荐