0

有没有简单的方法从文件(css/js/php)中读取注释头

喜欢

/*
Script Name : somescript
Author : Me
Version : 1.1
*/

作为简单的键值数组?

4

1 回答 1

2

PHP:

查看Tokenizer

要获取名为 file.php 的文件中的所有注释,您可以:

$tokens = token_get_all(file_get_contents("file.php"));
$comments = array();
foreach($tokens as $token) {
    if($token[0] == T_COMMENT || $token[0] == T_DOC_COMMENT) {
        $comments[] = $token[1];
    }
}
print_r($comments);

CSS:

jQuery.get("file.css", null, function(data) {
    var comments = data.match(/\/\*.*\*\//g);
    for each (var c in comments) 
        alert(c);
});
于 2013-08-04T11:52:33.527 回答