Home >php教程 >php手册 >PHP 编码规范(14)

PHP 编码规范(14)

WBOY
WBOYOriginal
2016-06-13 10:20:41908browse

6 if与else语句

if-else语句应该具有如下格式:


if (condition){ /* 进行操作的条件 */
  statements;
}

if (condition) {/*进行操作的条件. */
  statements;
} else {/*进行操作的条件*/
  statements;
}

if (condition) {/*进行操作的条件*/
  statements;
} else if (condition) {/*进行操作的条件 */
  statements;
} else{/*进行操作的条件*/
  statements;
}

注意:if语句总是用"{"和"}"括起来,避免使用如下容易引起错误的格式:


if (condition) //避免这种写法,他忽略了“{}”
  statement;

注释格式也可以像下面的这种方式写

if (condition) {
/*进行操作的条件*/
  statements;
} else {
/*进行操作的条件*/
  statements;
}

只要可以描述清楚各分支之间的关系,在哪里写注释均可


Statement:
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
Previous article:PHP 编码规范(4)Next article:PHP 编码规范(15)