【PHP】1-基本语法

PHP标记
起始结束标记:<?php … ?>
短标记:<?和?>,需要通过激活php.ini中的short open tag配置指令或者在编译PHP时使用了配置选项-enable-short-tags时才能使用。
全文标记:如果文件内容是纯PHP代码,最好删除文件末尾的PHP结束标记,可以避免PHP输出不必要的内容。
脚本标记:<script language="php"> ... </script>

从HTML中分离
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>
条件结构:
<?php if($expression==true): ?>
This will show if the expression is true.
<?php else: ?>
Otherwise this will show.
<?php endif; ?>

分隔符与注释
PHP以分号作为语句结束标记。
支持//注释及/**/注释
<?php
echo "This is a test"; //This is a one-line C++ style comment
/* This is a multi line comment
     yet another line of comment */
echo "This is yet another test";
echo ‘One Final Test‘; #This is a one-line shell-style comment
?>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。