还有一种不太常用的混合写法如下:
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] view plaincopy
<?php if($resitem['PREVIEW']){echo $resitem['PREVIEW']} else {echo "static/images/bg72.png"}?>
写法二:
[php] view plaincopy
<?php if($resitem['PREVIEW']): ?><?=$resitem['PREVIEW']?><?php else: ?>static/images/bg72.png<?php endif ?>
php里面添加html文件,很多时候需要用到!如添加一个站点统计到网站,如果你的网站全部是php来写的,这时候直接用echo输出统计代码就会出现问题!然后php可以很方便的引入一个html文件,这样就方便多了!
具体操作如下:
在do_footer函数里面利用include即可导入一个html文件
1)修改do_footer函数
function do_footer($credits = true) {
global $globals
echo "</div<!–#container closed–\n"
include("hugwww-footer.html")
if($credits) @do_credits()
do_js_from_array($globals['post_js'])
// warn warn warn
// dont do stats of password recovering pages
@include(‘ads/stats.inc’)
printf("\n<!–Generated in %4.3f seconds–\n", microtime(true) – $globals['start_time'])
2)将统计代码写入hugwww-footer.html文件完成!