1

我读取了 php 文件,并且该文件内容(一些代码行)逐行存储在 php 数组中

我的 php 文件行数组

$old_line_arr = new array(
                           "define ( 'name', '' );"
                           "//define ( 'age', '' );"   
                           "   //define ( 'ID', '' );"
                           )

我想检查给定的线阵列是否已注释

isComment($old_line_arr[0]){
  echo $old_line_arr[0].'commented';
}

我该如何编写 isComment 函数?是否有任何内置的 php 函数用于检查给定的 php 是否已评论或未评论。

4

2 回答 2

4

又快又脏,可能需要一些针对各种情况的错误处理代码:

$string = "//define('ID', '');";

$tokens = token_get_all("<?php $string");

if ($tokens[1][0] == T_COMMENT) {
    // it's a comment
} else {
    // it's not
}
于 2013-07-03T11:33:28.223 回答
2

你可以创建一个function这样的

function isComment($str) {
    $str = trim($str);
    $first_two_chars = substr($str, 0, 2);
    $last_two_chars = substr($str, -2);
    return $first_two_chars == '//' || substr($str, 0, 1) == '#' || ($first_two_chars == '/*' && $last_two_chars == '*/');
}

例子:echo isComment($old_line_arr[0]) ? 'comment' : 'not a comment';

于 2013-07-03T11:34:05.867 回答