跳转到内容

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


华夏公益教科书