码迷,mamicode.com
首页 > Web开发 > 详细

【PHP】1-基本语法

时间:2015-04-23 23:00:46      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

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
?>

【PHP】1-基本语法

标签:

原文地址:http://www.cnblogs.com/zephyrjung/p/4451896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!