如何在一个文件中编写php html更漂亮?

前端之家收集整理的这篇文章主要介绍了如何在一个文件中编写php html更漂亮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<?
if($id == 2) {
?>
       html goes here
<?
} 
else { 
?>
       if id is not 2 then something goes here
<?
}
?>

如何在没有学习聪明的情况下在一个更漂亮的文件中编写PHP html?

你可以使用 PHP’s alternative syntax for control structures
<? if ($id == 2): ?>
    <h2>some html</h2>
<? else: ?>
    <h2>another html chunk</h2>
<? endif ?>

请注意,short_open_tags是一个需要显式启用的PHP.ini指令,否则每次都必须写<?PHP.

原文链接:https://www.f2er.com/php/137245.html

猜你在找的PHP相关文章