PHP标记的方式有以下几种:
短标记:<?php ?>
<?php ?>
字符串标记:<script language="php"> </script>
<script language="php"> </script>
长标记:<?php ?>
短标记:<?= ?>
<?= ?>
需要注意的是,其中短标记(<? ?>)和字符串标记(<script language="php"> </script>)在一些PHP配置中可能被禁用,因此建议使用长标记(<?php ?>)来编写PHP代码。
<? ?>