I'm looking for a way to get Flex/Bison (or Lex/Yacc, et. al.) support in PHP. Specifically, I'm implementing a boolean query parser in a web UI and would rather keep all operations inside of PHP (as opposed to calling a C parser, or passing things off to Python, etc.).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
LIME Parser Generator for PHP:
|
|||||||
|
|
The PEAR library has the classes LexerGenerator and ParserGenerator. The LexerGenerator syntax is compatible with re2c, ParserGenerator syntax is compatible with the Lemon Parser generator. |
|||
|
|
|
Have you tried looking at PEG parser generators in PHP: https://github.com/maetl/php-peg ? Or a parser combinator approach: http://qntm.org/locoparser ? |
|||
|
|