一般來說有兩種混合寫法,一種是HTML套PHP,寫作
<?php ?><br>
;另一種是PHP套HTML,寫作
<?php echo ?><br>
,若php開啟短標籤寫法,也可寫
<?=$item['RAND']?><br>
還有一種不太常用的混合寫法如下:
easy way to execute conditional html / javascript / css / other language code with php if else:<br><?php if (condition):?><br>html code to run if condition is true<br><?php else: ?><br>html code to run if condition is false<br><?php endif ?><br>
列出專案中的一段程式碼的兩種寫法:
<?php <br/>if($resitem['PREVIEW']){<br/>echo $resitem['PREVIEW'];<br/>} else {<br/>echo "static/images/bg72.png";<br/>}<br/>?><br>
寫法二:
<?php <br/>if($resitem['PREVIEW']): ?> <?=$resitem['PREVIEW']?><?php else: ?>static/images/bg72.png<?php endif ?><br>
總結完畢;感謝大家的閱讀,希望大家有所收穫。
更多可以參考官方文件http://www.php.net/manual/zh/control-structures.if.php
本文轉自:https://blog.csdn. net/freshlover/article/details/9279527
推薦教學:《php教學》
以上是詳細解說三種PHP嵌套HTML的寫法的詳細內容。更多資訊請關注PHP中文網其他相關文章!