Home > php教程 > php手册 > body text

php基本语法:#php学习笔记#--基本语法

WBOY
Release: 2016-06-21 08:50:16
Original
1279 people have browsed it

一、从HTML中分离
当 PHP 解析一个文件时,会寻找开始和结束标记,标记告诉 PHP 开始和停止解释其中的代码。此种方式的解析可以 使 PHP 嵌入到各种不同的文档中,凡是在一对开始和结束标记之外的内容都会被 PHP 解析器忽略。大多数情况下 PHP 都是嵌入在 HTML 文档中的。

a



c


当然还可以嵌入一大段PHP代码
if(1 == true){
echo '

This is True.

';
}else{
echo '

This is False.

';
}
?>
还可以把echo,print,print_r之类的输出简写成=

a


='b'?>


c


二、指令分隔符
PHP和大部分语言一样,每一句话结束都需要用“;”告诉解析器我执行结束了
三、注释
PHP支持多种注释格式
如C++风格的“//注释内容”
如C风格的“/*注释内容*/”
如Shell风格的“#注释内容” 本文链接http://www.cxybl.com/html/wlbc/Php/20130320/37258.html



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template