可以的,有两种方式:
直接echo “html代码”
使用Heredoc技术,如下:
$html_str= <<<EOThtml代码
EOT
echo $html_str
EOT字体文件?你确定你没说错?只在PHP时有个EOT输出HTML块。。
例如:
<?php
echo <<<EOT
<table width=80% border="2" cellpadding="3" cellspacing="0" bordercolor="#808080">
<tr bgcolor="#84A9E1">
<td align="center">ClassID</td>
<td align="center">stuno</td>
<td align="center">学生姓名</td>
<td align="center">家长姓名</td>
<td align="center">家长手机号</td>
</tr>
EOT
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)