一般来说有两种混合写法,一种是HTML套PHP,写作
<?PHP ?>
;另一种是PHP套HTML,写作
<?PHP echo ?>
<?=$item['RAND']?>
还有一种不太常用的混合写法如下:
easy way to execute conditional html / javascript / css / other language code with PHP if else:
<?PHP if (condition):?>
html code to run if condition is true
<?PHP else: ?>
html code to run if condition is false
<?PHP endif ?>
列出项目中的一段代码的两种写法:
<?PHP
if($resitem['PREVIEW']){
echo $resitem['PREVIEW'];
} else {
echo static/images/bg72.png;
}
?>
写法二:
<?PHP
if($resitem['PREVIEW']): ?> <?=$resitem['PREVIEW']?><?PHP else: ?>static/images/bg72.png<?PHP endif ?>
总结完毕;感谢大家的阅读,希望大家有所收益。
更多可以参考官方文档http://www.PHP.net/manual/zh/control-structures.if.PHP
本文转自:https://blog.csdn.net/freshlover/article/details/9279527
推荐教程:《php教程》
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。