解析器和词法分析器生成器php

时间:2012-10-17 10:08:36

标签: php

我正在做一项学术工作,我需要使用解析器和lexer生成器来处理php。 我在网上搜索,发现this

问题是创建语法和plex文件。 例如:

<?php
class blah {
/*!lex2php
%input $this->data
%counter $this->N
%token $this->token
%value $this->value
%line $this->line
variable = @/?:([a-zA-Z0-9_]+)/?@
*/
/*!lex2php
variable {$a = 1;}
*/
}
?>

有人可以解释一下代码吗?

1 个答案:

答案 0 :(得分:2)

第一个注释块用于声明。所有%声明主要供内部使用,在此阶段不太相关 variable = @/?:([a-zA-Z0-9_]+)/?@很有意思。它定义了nonterminal symbol variable,由正则表达式@/?:([a-zA-Z0-9_]+)/?@定义。

如果你使用这个plex文件生成你的词法分析器并输入如下内容:

234lksdf lskdjf324 kl234jd

令牌流如下:

token: variable
value: 234lksdf 

token: variable
value: lskdjf324 

token: variable
value: kl234jd