XML标记风格:
<?php
echo "this is xml style";
?>
是书写PHP脚本最常用的标记风格。
简短标记风格:
<?
echo "this is short tag style";
?>
是短标记风格,但通常不鼓励使用。因为只有通过激活php.ini中的“short_open_tag”配置指令,或者编译PHP时使用了配置选项“enable-short-tag”时才能使用此风格。
脚本标记风格:
<scrip LANGUAGE="php">
echo "this is script style";
</script>
脚本标记风格,以"<script>"开头,以"</script>"结束。
asp标记风格:
<%
echo "this is asp style":
%>
asp标记风格以“<%”标记开头,以“%>”标记结束。若要关闭asp标记风格,可配置php,ini文件,将asp_tags=on后面的参数设置为off。