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>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!