織夢DEDECMS文章內(nèi)容body圖文分離調(diào)用代碼
來源:本站原創(chuàng)
|時間:2021-08-05
|欄目:
dedecms|點擊: 次
織夢DEDECMS文章正文調(diào)用代碼為{dede:field.body/},這樣圖片和文章都調(diào)用出來了。能不能分開調(diào)用呢?當然可以啦!調(diào)用 代碼如下
內(nèi)容文字
2 |
{dede:field.body runphp= yes } |
4 |
$result = preg_replace( "/<s{0,}img[^>]+>/i" , '' ,$string); |
|
內(nèi)容圖片
02 |
{dede:field.body runphp= yes } |
04 |
preg_match_all( "/<img([^>]*)s*src=('|" )([^' "]+)('|" )/",$string,$matches); |
05 |
$imgsrc_arr = array_unique($matches[3]); |
06 |
foreach($imgsrc_arr as $imgsrc) |
08 |
$result .= "<li><img class=" img " src=" $imgsrc "></li> " ; |
|