Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Binay Agarwal
ssage - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "Binay Agarwal" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, August 14, 2003 5:39 PM Subject: RE: [PHP] PHP - Interpreted or Compiled Language > [snip] > Is php Interpreted language or Compile

Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Marek Kilimajer
And on transmeta's crusoe CPU even i386 code is translated into crusoe's native code. Curt Zirzow wrote: * Thus wrote Robert Cummings ([EMAIL PROTECTED]): While is is true that the opcodes cannot be run as machine code, the opcode (bytecode) can be run on any machine which has the PHP engine (or

RE: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Jay Blanchard
[snip] Is php Interpreted language or Compiled Language like C or C++. [/snip] PHP is an interpreted language in most applications. However, the PHP-GTK is available and there are other options for compiling PHP. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

RE: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Jay Blanchard
[snip] I'll tell you what really forced me to go in the matter of interpreted or Compiled language. In the heart of PHP 4+ is Zend Engine which compiles (often says) the php code into some intermediate code called opcode and then Zend executor executes them converting these opcodes to machine lan

Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Curt Zirzow
* Thus wrote Binay Agarwal ([EMAIL PROTECTED]): > Thanks jay for quick response > > I'll tell you what really forced me to go in the matter of interpreted or > Compiled language. > > In the heart of PHP 4+ is Zend Engine which compiles (often says) the php > code into some intermediate code call

Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Curt Zirzow
* Thus wrote Robert Cummings ([EMAIL PROTECTED]): > While is is true that the opcodes cannot be run as machine code, the > opcode (bytecode) can be run on any machine which has the PHP engine (or > an opcode reader). Does Java not call itself a compiled language? If so > then the simple addition of

Re: [PHP] PHP - Interpreted or Compiled Language

2003-08-14 Thread Robert Cummings
While is is true that the opcodes cannot be run as machine code, the opcode (bytecode) can be run on any machine which has the PHP engine (or an opcode reader). Does Java not call itself a compiled language? If so then the simple addition of PHP Accelerator, or Zend Accelerator should be sufficient