有没有简单的方法从文件(css / js / php)
读取评论标题喜欢
/*
Script Name : somescript
Author : Me
Version : 1.1
*/
作为简单的键值数组?
答案 0 :(得分:2)
查看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);
jQuery.get("file.css", null, function(data) {
var comments = data.match(/\/\*.*\*\//g);
for each (var c in comments)
alert(c);
});