//(C/C++ 风格单行注释)#(Unix Shell风格单行注释)
<?php
// this is C++ style single line comment
# this is Unix Shell style single line comment
echo "Welcome to PHP single line comments";
?>
PHP
上面代码输出结果如下 -
Welcome to PHP single line comments
Shell
PHP多行注释在PHP中,我们也可以注释多行。 为此,我们需要将所有行包含在/* 和 */中。 下面来看看一个简单的PHP多行注释的例子。
<?php
/*
Anything placed
within comment
will not be displayed
on the browser;
*/
echo "Welcome to PHP multi line comment";
?>
PHP
执行上面代码输出结果如下 -
Welcome to PHP multi line comment
//更多请阅读:https://www.yiibai.com/php/php-comments.html