typecho调用文章图片并显示
admin
撰写于 2022年 02月 25 日

方法代码

function thumbcon($con) {


preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $con, $matches);
$imgCount = count($matches[0]);
if($imgCount >= 1){
$img = $matches[2][1];
}
if(!$img){
$rand_num = 5; 
$img = Helper::options()->siteUrl."usr/themes/pure/randimg/".rand(1,$rand_num).".jpg?imageMogr2/format/webp";
}
return $img;



}

调用方法自己参考

style="background-image:url(<?php echo thumbcon($this->content); ?>)"

typecho调用文章图片并显示

方法代码

function thumbcon($con) {


preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $con, $matches);
$imgCount = count($matches[0]);
if($imgCount >= 1){
$img = $matches[2][1];
}
if(!$img){
$rand_num = 5; 
$img = Helper::options()->siteUrl."usr/themes/pure/randimg/".rand(1,$rand_num).".jpg?imageMogr2/format/webp";
}
return $img;



}

调用方法自己参考

style="background-image:url(<?php echo thumbcon($this->content); ?>)"

那年今日
02月
25日
赞 (0)

猜您想看

评论区(暂无评论)

这里空空如也,快来评论吧~

我要评论