花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

帝國常用的PHP判斷語法集合

時間: 2020-09-16 10:23 閱讀: 作者:素材無憂網(wǎng)

默認內(nèi)容頁帝國cms判斷方法

<?php
if($navinfor[befrom]){
?>
<p>來源:[!--befrom--]</p>
<?php
}?>

利用PHP語法輸出判斷結(jié)果

<?php
if($navinfor[befrom]){
echo"來源:".$navinfor[befrom];
}?>
<?phpif($navinfor[befrom]){
echo"來源:".ReplaceBefrom($navinfor[befrom]);
}
?>

結(jié)合if else來使用

<?php
if($navinfor['befrom']){
?>
<p>[!--befrom--]</p>
<?php
}else{
?>
織夢無憂
<?php
}?>

emptye的方法

<?php if(!empty($classr[classimg])){ 
echo '<img src="'.$classr[classimg].'">'; 
}else{ 
echo '';
 } 
?>

注釋:!(為不)+empty(為空)=!empty(不為空)
各種判斷調(diào)用作者的方法

<?=ReplaceBefrom($navinfor[befrom]?$navinfor[befrom]:'織夢無憂')?>
<?=$navinfor[befrom]?'來源:'.$navinfor[befrom].'':''?>
<?=$navinfor[befrom]?"來源:$navinfor[befrom]&nbsp;&nbsp;":""?>  注釋:&nbsp; 為空格
<?=$navinfor[befrom]?$navinfor[befrom]:"暫無簡介  "?>
<? echo  $navinfor['befrom']?'<span>來源:'.$navinfor[befrom].'</span>':'暫無來源';?>
<?=$navinfor[writer]?:"暫"?>

switch判斷方法

<?php
switch($class_r[$GLOBALS[navclassid]]['bname']){
case "國內(nèi)":
$sid = 34;
break;
case "國際":
$sid = 35;
break;
default:
$sid = 34;
}
?>
<?=$sid?>

包括多值時的判斷

<?php
$c1_r=array(35,34);
$c2_r=array(36,37);
if(in_array($GLOBALS[navclassid],$c1_r)){
$cid1='廣告1';
}elseif(in_array($GLOBALS[navclassid],$c2_r)){
$cid1='廣告2';
}else{
$cid1='其他廣告';
}?>
<?=$cid1?>

或直接輸出:把 $cid1 =  改為 echo

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 帝國常用的PHP判斷語法集合

標簽:  
模板推薦