hafriedlander / php-peg

PEG (parsing expression grammar) compiler for PHP
Other
191 stars 53 forks source link

PHP7 support #35

Open matzematthaey opened 8 years ago

matzematthaey commented 8 years ago

Not really an issue, but to get it working with the default configuration, right now, you need disable pcre.jit for the cli.php & compiler:

ini_set("pcre.jit", "0");

works as intended afterwards.