在DEDECMS中,使用php語句的話,本身是有{dede:php}標籤可以使用的,最簡單的輸入如:
{dede:php} $numA = 1; $numB = 2; echo $numA + $numB; {/dede:php}
從上面語句可以看出dede:php標籤可以名符其實的讓在php中一樣的用法,上面語句在php寫法如下:
<? $numA=1; $numB=2; echo $numA+$numB; ?>
是不是看上去很像啊,再看一個再有if else 條件判斷的
[field:global runphp='yes' name=autoindex] $a="<SPAN class='num active'>"; $b="</SPAN>"; $c="<(www.jb51.net)SPAN class='num'>"; if (@me > 3) @me = $c.@me.$b; else @me = $a.@me.$b; [/field:global]
這個在php中寫法我就不寫了,下面我們要看dede php標籤結合起來sql標籤使用。
【相關課程學習:dedecms影片教學】
結合SQL查詢輸出單一內容
{dede:php} $row = $dsql->GetOne('select id,typename from dede_arctype where id=2'); print_r($row); {/dede:php}
這個輸出的內容是:
Array ( [id] => 2 [typename] => 问答 )
是不是很簡單啊,有需要學習的朋友可以參考這篇文章哈。
推薦學習:dedecms使用教學
#以上是dedecms中如何使用php語句? (使用指南)的詳細內容。更多資訊請關注PHP中文網其他相關文章!