RE: [PHP-DEV] Date Support

2004-08-03 Thread Joseph Lee
http://pear.php.net/package/Date/docs/1.4.2/ -Original Message- From: Jason Garber [mailto:[EMAIL PROTECTED] Sent: 03 August 2004 04:08 To: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] Date Support Hello Wez, I must be missing something... I went to the link and couldn't find any document

RE: [PHP-DEV] GOTO operator

2004-07-30 Thread Joseph Lee
Hartmut Holzgraefe wrote: > Robert Cummings wrote: >> C has it >> C++ has it >> VB has it >> Lisp has "GO" which is pretty much the same >> Perl >> >> I'm sure many other too. > >Even PASCAL, the mother of "structured code" languages, has it! Python too! ;) http://www.entrian.com/goto/ ;) --

RE: [PHP-DEV] Throw Question

2004-06-17 Thread Joseph Lee
I guess "exit();" terminates execution within itself without returning to the caller, so that is no chance of getting a runtime error. For example, " return ( exit() ); " is wrong, but works. Joe Lee -Original Message- From: Jason Garber [mailto:[EMAIL PROTECTED] Sent: Thursday, Jun

RE: [PHP-DEV] 64 bit safety...

2004-06-16 Thread Joseph Lee
While this is being fixed: 1. Does that mean PHP on 64-bit is declared not safe for Production use? 2. Will it be safe on Linux AMD64, if we compiled PHP with CFLAGS="-m32" ? I have noticed on both release of PHP4.3.7 & PHP5.0.0RC3, there are some failures during "make test", if compiled wit

RE: [PHP-DEV] Re: PHP and Apache2

2004-06-16 Thread Joseph Lee
Well written & well explain Rasmus. I have seem this questions been asked many times in a few mail list. Someone should post this reply into a FAQ page or the Manual in www.php.net Joe Lee. -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 200

[PHP-DEV] phpinfo();

2004-04-01 Thread Joseph Lee
What's with the logo on phpinfo() today? The php logo has been changed to a dog. Is it a 1st April thing? Joe Lee -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] Cannot re-assign $this

2004-03-09 Thread Joseph Lee
Here's the reply to a similar question in http://www.zend.com/php/ask_experts.php : "The fact that you could change in PHP 4, was never really meant to be although it worked. In PHP 5 we removed this option due to performance and semantic reasons. In PHP 5, you can either use a factory method patt