PHP小常识分享
echo"Hello world";
// ... more codeecho"Last statement";
// the ends here with no PHP closing tag
从 HTML 中分散
通常在一对最先和竣事标志之外的内容都市被 PHP 剖析器忽略,这使得 PHP 文件可以包罗混淆内容。 这可以让 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>
示例:使用了条件的高级分散术(Advanced escaping using conditions)
<?phpif ($expression == true): ?>
This will show if the expression is true.
<?phpelse: ?>
Otherwise this will show.
<?phpendif; ?>
上例中, PHP 将跳过不切合条件的区块,纵然它们位于 PHP 最先和竣事标志之外。由于 PHP 诠释器会在不切合条件时直接跳过该段条件语句块,因此 PHP 会凭据条件来忽略之。要输出大段文本时,跳出 PHP 剖析模式 通常比 通过 echo 或 print 输出文本 更有用率。
“沈阳软件公司”的新闻页面文章、图片、音频、视频等稿件均为自媒体人、第三方机构发布或转载。如稿件涉及版权等问题,请与
我们联系删除或处理,客服QQ:55506560,稿件内容仅为传递更多信息之目的,不代表本网观点,亦不代表本网站赞同
其观点或证实其内容的真实性。
热门文章
使用“扫一扫”即可将网页分享至朋友圈。