凡是在一對開始和結(jié)束標記之外的內(nèi)容都會被 PHP 解析器忽略,這使得 PHP 文件可以具備混合內(nèi)容。 可以使 PHP 嵌入到 HTML 文檔中去,如下例所示。
<p>This is going to be ignored by PHP and displayed by the browser.</p>
<?php echo 'While this is going to be parsed.'; ?>
<p>This will also be ignored by PHP and displayed by the browser.</p>
使用條件結(jié)構(gòu):
示例 #1 使用條件的高級分離術(shù)
<?php if ($expression == true): ?>
This will show if the expression is true.
<?php else: ?>
Otherwise this will show.
<?php endif; ?>
要輸出大段文本時,跳出 PHP 解析模式通常比將文本通過 echo 或 print 輸出更有效率。
注意:
此外注意如果將 PHP 嵌入到 XML 或 XHTML 中則需要使用
<?php ?>
標記以保持符合標準。