目录

PHP 注释


PHP 中的注释

PHP 代码中的注释是不作为程序的一部分执行的行。它的唯一目的是供正在查看代码的人阅读。

注释可用于:

  • 让别人理解你的代码
  • 提醒自己做了什么——大多数程序员都经历过在一两年后回到自己的工作中并不得不重新弄清楚他们做了什么。注释可以让你想起你写代码时的想法

PHP 支持多种注释方式:

示例

单行注释的语法:

<!DOCTYPE html>
<html>
<body>

<?php
// This is a single-line comment

# This is also a single-line comment
?>

</body>
</html>
亲自试一试 »

示例

多行注释的语法:

<!DOCTYPE html>
<html>
<body>

<?php
/*
This is a multiple-lines comment block
that spans over multiple
lines
*/
?>

</body>
</html>
亲自试一试 »

示例

使用注释省略部分代码:

<!DOCTYPE html>
<html>
<body>

<?php
// You can also use comments to leave out parts of a code line
$x = 5 /* + 15 */ + 5;
echo $x;
?>

</body>
</html>
亲自试一试 »