I'm wondering if anyone knows where I can find information about how PHP
parser processes commands like:
$a=$b+$c;
if ($b < $a) {}
(Ones with operators)
I've downloaded the source code, but I'm having much luck narrowing down my
search. Can anyone help me??
Thanks!
--
PHP Development Mail
ristov" <[EMAIL PROTECTED]> wrote in message
02e501c25822$e9b104e0$1601a8c0@andreywin">news:02e501c25822$e9b104e0$1601a8c0@andreywin...
> Zend/zend_language_parser.y
> Zend/zend_language_scanner.l
> you have to know something about Yacc/Bison and FLex/Lex
>
> Best r