Re: [PHP-DEV] PHP compiler

2003-08-06 Thread rblack
I would have thought the big thing against a compiler which produced native machine code is that sooner or later differences between Operating Systems and the library functions they provide would mean that the language would no longer be machine independent. >Which for me (and a lot of other devel

Re: [PHP-DEV] PHP archive

2003-08-06 Thread Antony Dovgal
> I think that should be great to have transparent ZIP layer at the > "include"/"require" level so one could write something like "require > './lib/some-arc.par/SomePath/MyClass.php'" but the command-line > interface imho should be similar to java i.e. > > php -par my-app.par Personally I would pr

Re[2]: [PHP-DEV] PHP compiler

2003-08-06 Thread Simeon Koptelov
Hello Jeremy, Wednesday, August 6, 2003, 8:16:49 PM, you wrote: JSJ> No that is not what I meant. What I meant is so when you write an JSJ> application using PHP-GTK you could distribute a single executable JSJ> instead of the current method. Personally the current method doesn't JSJ> bother me,

Re: [PHP-DEV] try/catch/FINALLY

2003-08-06 Thread Timm Friebe
On Wed, 2003-08-06 at 09:14, Marcus Börger wrote: > Hello Cristiano, [...] > There's absolute no need for finally: > > try { > } > catch (...) { > } > // here's you're finally code Well, consider: function foo() { try { // ... } catch (Exception $e) { // ...handle it... return fa

Re: [PHP-DEV] PHP compiler

2003-08-06 Thread Per Lundberg
On Wed, 2003-08-06 at 15:50, Jeremy S. Johnstone wrote: > After seeing the conversation on the PHP archive idea (having a PHP > equivalent of a jar file), it reminded me of an idea I had a long time > ago. Has anyone ever thought of writing a PHP compiler which would > compile a PHP script into nat

Re: [PHP-DEV] PHP compiler

2003-08-06 Thread John Coggeshall
I began work on that project. It's called PASM http://www.coggeshall.org/projects/ John On Wed, 2003-08-06 at 09:50, Jeremy S. Johnstone wrote: > After seeing the conversation on the PHP archive idea (having a PHP > equivalent of a jar file), it reminded me of an idea I had a long time > ago. H

Re: [PHP-DEV] PHP compiler

2003-08-06 Thread Andrey Hristov
Even there is "bcompiler" in PEAR. Andrey - Original Message - From: "Simeon Koptelov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 06, 2003 6:07 PM Subject: Re: [PHP-DEV] PHP compiler > Hello Jeremy, > > Wednesday, August 6, 2003, 7:50:57 PM, you wrote: > > JSJ

Re: [PHP-DEV] Patch for command-line version of PHP

2003-08-06 Thread Edin Kadribasic
> Hello Vesselin, > > Tuesday, August 5, 2003, 10:47:53 PM, you wrote: > > VA> Hello. > VA> Here is a patch for the command-line version of PHP which makes it chdir() > VA> to the > VA> script directory just like the web version of PHP does. It also implements > VA> the -C > VA> option which has be