什么是'#';在php中?

什么是'#';在php中?,php,Php,在我的php页面代码中,有一行代码如下: ##|*IDENT=page-system-advanced-admin 这是评论行吗?如果不是,是什么?我在网上搜索,但找不到解决方案 PHP支持“C”、“C++”和Unix shell风格(Perl风格)注释。例如: 语法突出显示为您解答了问题。我感觉这是一个评论,但不确定。谢谢 <?php echo 'This is a test'; // This is a one-line c++ style comment /*

在我的php页面代码中,有一行代码如下:

##|*IDENT=page-system-advanced-admin
这是评论行吗?如果不是,是什么?我在网上搜索,但找不到解决方案

PHP支持“C”、“C++”和Unix shell风格(Perl风格)注释。例如:



语法突出显示为您解答了问题。我感觉这是一个评论,但不确定。谢谢
<?php
    echo 'This is a test'; // This is a one-line c++ style comment
    /* This is a multi line comment
       yet another line of comment */
    echo 'This is yet another test';
    echo 'One Final Test'; # This is a one-line shell-style comment
?>