还有一种不太常用的混合写法如下:
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 ?>
1、第一种是在HTML中加PHP。
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<meta http-equiv="Content-Language" content="zh-CN" />
<title>Hello World</title>
</head>
<body>
<?php
echo "Hello world!这是正文"
?>
</body>
</html>
2、第二种用echo输出HTML。
因为HTML有的元素中有双引号,所以用echo输出的内容用单引号括起来,避免出错,也省了转义这一步。比如这样的代码:
<?php
if(!$_POST){
echo ‘<form action="" method="post">
服务器地址:<input type="text" name="host" value="localhost" /><br />
数据库账号:<input type="text" name="user" value="" /><br />
数据库密码:<input type="password" name="pwd" value="" /><br />
指定数据库:<input type="text" name="db" value="test" /><br />
<input type="submit" value="确定"/>
</form>‘
}
?>
3、第三种就是用(<<<)标记符了,这是在PHP168的模板代码中首次见到的。
<?php
print <<<EOT
<div class="slidecont">{$label[deepblue_mainslide]}</div>
<div class="newcontainter">
<div class="head">{$label[deepblue_mainh1]}</div>
<div class="cont" id="Tab1">{$label[deepblue_maint1]}</div>
<div class="cont" id="Tab2">{$label[deepblue_maint2]}</div>
</div>
<a href="$rs[url]" title="$rs[descrip]" target="_blank">$rs[name]</a>
EOT
?>
一样的,只是html元素被包含在php代码中的双引号内的话,那么html本身有的双引号要使用转义符比如
echo "<a href=\"3.php\" target=\"_blank\">点击</a>"
当然,也可以使用单引号和双引号配合
echo "<a href='3.php' target='_blank'>点击</a>"
或者
echo '<a href="3.php" target="_blank">点击</a>'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)