PHP 编程/格式化笔记
外观
< PHP 编程
一位维基教科书用户建议将本书或章节与 PHP 编程/注释和风格 合并。 请在讨论页面 上讨论是否应该进行合并。 |
在 PHP 中注释很简单且有效。
在代码中为自己编写注释是跟踪大型文件的唯一方法。回到一个没有注释的 300 行代码页面可能会是一场噩梦。
要在 PHP 代码中插入单行注释,在该行之前键入 //。要在代码中插入多行注释,使用 /* 开始注释,并使用 */ 结束注释。例如
<?php
$example = 1
//this is a comment that will be ignored. But will help me remember what the code means.
if (!randomfunction($_POST[dart])){function(example); $example ++;}
/*This is a long
multi-line comment that will
help me remember what the code means.
It will be ignored by the php-
parser*/
randomfuction($example);
?>