PHP如何从twig文件中读取注释?

时间:2016-09-08 17:24:17

标签: php twig php-7

如何使用PHP阅读 twig文件中的评论?

test.twig:

{# Holy cow Twig is awesome! #}

PHP:

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

结果:

Array ( )

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

为什么不使用正则表达式?

$txt = file_get_contents("test.twig");
if ( preg_match_all ("/{#([^}]*)#}/", $txt, $matches) )
  print_r($matches[1]);