Re: [PHP] PHP Source files

2002-09-09 Thread timo stamm
Hi Adam, Am Montag den, 9. September 2002, um 18:45, schrieb Adam Voigt: > The code in the braces will never be executed > because $a will always be ateast $b if not greater > (assuming $c has a value) which means that it couldn't > be greater, however it could be >= if $c was 0. $c could also h

Re: [PHP] PHP Source files

2002-09-09 Thread OrangeHairedBoy
Hey, that's a starting point!!! :) Thanks "Adam Voigt" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Oh, ok, I was wondering cause I thought the question was > fairly basic, as for where in the actual source code to PHP expressions > are processed I have no

Re: [PHP] PHP Source files

2002-09-09 Thread Adam Voigt
Oh, ok, I was wondering cause I thought the question was fairly basic, as for where in the actual source code to PHP expressions are processed I have no idea. I bet they know in the php-dev mailing list though, you might want to try there. Adam Voigt [EMAIL PROTECTED] On Mon, 2002-09-09 at 12:55

Re: [PHP] PHP Source files

2002-09-09 Thread OrangeHairedBoy
Schroebel" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > From: OrangeHairedBoy [mailto:[EMAIL PROTECTED]] > > Sent: Monday, September 09, 2002 12:41 PM > > Subject: [PHP] PHP Source files > > > > I'm wonderin

Re: [PHP] PHP Source files

2002-09-09 Thread OrangeHairedBoy
No, but that's ok... What am looking to learn is HOW php makes those kind of expressiong work. I know how to write php intematly, but I'd like to know where in the downloadable PHP source code it processes these statements. Any help on that?? Lewis "Adam Voigt" <[EMAIL PROTECTED]> wrote in me

RE: [PHP] PHP Source files

2002-09-09 Thread Matt Schroebel
> From: OrangeHairedBoy [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 09, 2002 12:41 PM > Subject: [PHP] PHP Source files > > I'm wondering if anyone knows where I can find information > about how PHP > parser processes commands like: > > $a=$b+$c; &

Re: [PHP] PHP Source files

2002-09-09 Thread Adam Voigt
Umm, maybe I'm confused, but here's an answer, not sure if it's right: The code in the braces will never be executed because $a will always be ateast $b if not greater (assuming $c has a value) which means that it couldn't be greater, however it could be >= if $c was 0. Adam Voigt [EMAIL PROTECT

[PHP] PHP Source files

2002-09-09 Thread OrangeHairedBoy
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 General Mailing L