帝國CMS判斷內容正文newstext字段是否有圖片,沒有圖片則顯示文中廣告,有圖片則不顯示,代碼如下:
<?php
$string=$navinfor['newstext'];//內容字段
$some="<img ";
$num=explode($some,$string);
if(count($num)>1){//判斷內容中是否有圖片
?>
[!--newstext--]
<?
}else{
?>
<div id="ad">我是廣告</div>
[!--newstext--]
<?
}
?>