-1

In my php page code there is a line as follows:

##|*IDENT=page-system-advanced-admin

Is this a comment line? If not what is it? I searched online but couldn't find the solution.

Fluffeh
  • 33,228
  • 16
  • 67
  • 80
user3435052
  • 49
  • 1
  • 6

1 Answers1

5

PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments. For example:

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

PHP Comments documentation

hsz
  • 148,279
  • 62
  • 259
  • 315