【发布时间】:2014-07-26 05:17:24
【问题描述】:
在我的php页面代码中有一行如下:
##|*IDENT=page-system-advanced-admin
这是注释行吗?如果不是,那是什么?我在网上搜索但找不到解决方案。
【问题讨论】:
-
语法高亮已经为你解答了问题
标签: php
在我的php页面代码中有一行如下:
##|*IDENT=page-system-advanced-admin
这是注释行吗?如果不是,那是什么?我在网上搜索但找不到解决方案。
【问题讨论】:
标签: php
PHP 支持“C”、“C++”和 Unix shell 样式(Perl 样式)cmets。例如:
<?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
?>
【讨论】: