Home > php教程 > php手册 > PHP学习笔记(一):基本语法之标记、空白、和注释

PHP学习笔记(一):基本语法之标记、空白、和注释

WBOY
Release: 2016-06-06 20:04:50
Original
1039 people have browsed it

这篇文章主要介绍了PHP学习笔记(一):基本语法,本文讲解了PHP 标记、PHP 注释、PHP 空白三个最基本的语法,需要的朋友可以参考下

一、PHP 标记

1、XML风格

复制代码 代码如下:




2、简短风格

复制代码 代码如下:




3、script 风格

复制代码 代码如下:



二、PHP 注释

1、单行注释: // (C++风格)
2、多行注释:/* */ (C风格)
3、单行脚本注释:# (shell风格)

Tips:注释一般写在代码上面

三、PHP 空白

1、空白间隔符

换行(回车)、空格、Tab(制表符)

2、约定习俗

代码片段(2行)、类(2行)、函数(1行)、函数变量与第一条语句(1行)、注释前(1行)

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