Re: [PHP] PHP 5 Status

2005-04-02 Thread Colin Ross
ok, thanks for your input. now to make a roll-out plan for upgrading... Colin On Apr 1, 2005 1:17 PM, Jordi Canals [EMAIL PROTECTED] wrote: On Apr 1, 2005 8:30 PM, Colin Ross [EMAIL PROTECTED] wrote: Is PHP 5 ready for production environments? Is it concidered stable, or is it just a

Re: [PHP] PHP 5 Status

2005-04-02 Thread Colin Ross
Now, as far as I know though, there are still issues with Apache 2 and PHP-libraries, correct? On Apr 2, 2005 11:38 PM, Colin Ross [EMAIL PROTECTED] wrote: ok, thanks for your input. now to make a roll-out plan for upgrading... Colin On Apr 1, 2005 1:17 PM, Jordi Canals [EMAIL

Re: [PHP] PHP 5 Status

2005-04-01 Thread Matthew Fonda
Yes, PHP5 is ready for production environments. It is stable, and has been stable for almost an entire year. Is PHP 5 ready for production environments? Is it concidered stable, or is it just a matter of going a while with no new bugs discovered to get to stable.. Colin -- PHP General Mailing

Re: [PHP] PHP 5 Status

2005-04-01 Thread Jordi Canals
On Apr 1, 2005 8:30 PM, Colin Ross [EMAIL PROTECTED] wrote: Is PHP 5 ready for production environments? Is it concidered stable, or is it just a matter of going a while with no new bugs discovered to get to stable.. Yes, it is ready. I've been using on my production servers since version

Re: [PHP] PHP 5 Strings are References?!

2005-03-30 Thread Jochem Maas
Chris wrote: Richard Lynch wrote: On Tue, March 29, 2005 7:58 pm, Chris said: Richard Lynch wrote: ... Are you sure you don't have register_globals enabled? I tested Richards reproduce script on php 5.0.3 on a Debian machine with the following ini settings: register_globals = Off

Re: [PHP] PHP 5 Strings are References?!

2005-03-29 Thread Chris
Richard Lynch wrote: On Tue, March 29, 2005 7:58 pm, Chris said: Richard Lynch wrote: Aha! Okay, here's the previous session question boiled down to its simplest: ?php session_start(); if (!isset($_SESSION['name'])){ $_SESSION['name'] = 'Richard Lynch'; } else{ $name =

Re: [PHP] PHP 5 with Apache 2.0

2005-02-15 Thread Lester Caine
Lars B. Jensen wrote: So from here, go for it mate Same here. The more of us running it the sooner it will become the norm ;) -- Lester Caine - L.S.Caine Electronic Services -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP 5 with Apache 2.0

2005-02-15 Thread Richard Lynch
Neal Schilling wrote: I know this question probably gets asked a lot, but I'm setting up a Web Server shortly and am debating going with PHP 5 on Apache 2.0 or 1.3. In short, is PHP 5, when combined with either Apache 1.3 or 2.0 on Linux or FreeBSD, ready for a production environment? This is,

Re: [PHP] PHP 5 with Apache 2.0

2005-02-15 Thread The Disguised Jedi
go for it dudeit's ready for you...the question is... being funny Are you ready for it?? /being funny On Tue, 15 Feb 2005 12:29:04 -0800 (PST), Richard Lynch [EMAIL PROTECTED] wrote: Neal Schilling wrote: I know this question probably gets asked a lot, but I'm setting up a Web Server

Re: [PHP] PHP 5 with Apache 2.0

2005-02-14 Thread Lars B. Jensen
I've been running FreeBSD 5.3, Apache 2.0.53, PHP 5.0.3 with mySQL 4.1.8 without any issues in production. Unless you rely on some spooky extentions, I wouldnt think you should have any problems running - that you ask this question here, tells me you aint running any such spooky things. I'm

Re: [PHP] PHP 5 Compile error

2005-01-31 Thread Richard Lynch
Brian V Bonini wrote: %cat config.txt | tr -s \n --enable-versioning --enable-memory-limit --with-layout=GNU --with-zlib-dir=/usr --with-imap=/usr/local --disable-all --with-regex=php --disable-cli --enable-ctype --with-gd --enable-gd-native-ttf --with-freetype-dir=/usr/local

Re: [PHP] PHP 5 Compile error

2005-01-31 Thread Brian V Bonini
On Mon, 2005-01-31 at 12:56, Richard Lynch wrote: Brian V Bonini wrote: %cat config.txt | tr -s \n --enable-versioning --enable-memory-limit --with-layout=GNU --with-zlib-dir=/usr --with-imap=/usr/local --disable-all --with-regex=php --disable-cli --enable-ctype --with-gd

Re: [PHP] php 5 interfaces

2005-01-21 Thread Sergio Gorelyshev
On Thu, 20 Jan 2005 11:13:11 -0800 (PST) Richard Lynch [EMAIL PROTECTED] wrote: Sergio Gorelyshev wrote: Hi all. Situation: interface MyInterface { public static myMethod(); } class MyClass implements MyInterface { public static myMethod() {} } This sample will crash

[Fwd: Re: [PHP] php 5 interfaces]

2005-01-21 Thread Jochem Maas
Tbird switched the reply and reply-all buttons again ;-)... ? IMHO its normally to use access type for methods declaration in interfaces. Why not? Maybe my first example was not sufficiently illustrative. But my question was why it does not work in one environment and work fine in another. it

Re: [Fwd: Re: [PHP] php 5 interfaces]

2005-01-21 Thread Sergio Gorelyshev
On Fri, 21 Jan 2005 11:56:55 +0100 Jochem Maas [EMAIL PROTECTED] wrote: Tbird switched the reply and reply-all buttons again ;-)... ? IMHO its normally to use access type for methods declaration in interfaces. Why not? Maybe my first example was not sufficiently illustrative. But my

Re: [PHP] php 5 interfaces

2005-01-20 Thread Richard Lynch
Sergio Gorelyshev wrote: Hi all. Situation: interface MyInterface { public static myMethod(); } class MyClass implements MyInterface { public static myMethod() {} } This sample will crash with message Fatal error: Access type for interface method MyInterface::myMethod() must be

Re: [PHP] php 5 interfaces

2005-01-20 Thread Jochem Maas
Richard Lynch wrote: Sergio Gorelyshev wrote: Hi all. Situation: interface MyInterface { public static myMethod(); } class MyClass implements MyInterface { public static myMethod() {} } This sample will crash with message Fatal error: Access type for interface method MyInterface::myMethod() must

Re: [PHP] PHP 5 confusion

2005-01-08 Thread Curt Zirzow
* Thus wrote Don: Hi, Reading the PHP 5 documentation at: HYPERLINK http://www.php.net/manual/en/language.oop5.basic.phphttp://www.php.net/man ual/en/language.oop5.basic.php, I am confused. After looking at the example output, it is not correct, the real output should be:

Re: [PHP] PHP 5 confusion

2005-01-07 Thread Richard Lynch
Reading the PHP 5 documentation at: HYPERLINK http://www.php.net/manual/en/language.oop5.basic.phphttp://www.php.net/man ual/en/language.oop5.basic.php, I am confused. In the example given, what is the difference between: $assigned = $instance; $reference = $instance; I would expect

Re: [PHP] PHP 5 compile time configure options

2004-10-14 Thread Jason Wong
On Thursday 14 October 2004 23:24, Don wrote: The link: HYPERLINK http://www.php.net/manual/en/install.configure.phphttp://www.php.net/manu a l/en/install.configure.php no longer functions. Where can I get a list of all the PHP 5 configure options at compile time as well as documentation and

Re: [PHP] PHP 5 compile time configure options

2004-10-14 Thread Greg Donald
On Thu, 14 Oct 2004 11:24:41 -0400, Don [EMAIL PROTECTED] wrote: The link: HYPERLINK http://www.php.net/manual/en/install.configure.phphttp://www.php.net/manua l/en/install.configure.php no longer functions. Where can I get a list of all the PHP 5 configure options at compile time as well as

Re: [PHP] PHP 5 - $_REQUEST undefined???

2004-08-08 Thread John Holmes
Marcus Bointon wrote: I'm getting errors like this: Notice: Undefined variable: _REQUEST in /var/www/html/index.php on line 57 This is truly weird - why on earth would this superglobal be undefined? (and there is no unset($_REQUEST) lurking!) As far as I'm aware, there isn't even an ini option to

Re: [PHP] php 5 DOM tutorials / examples?

2004-07-26 Thread Christian Stocker
On Mon, 26 Jul 2004 18:02:51 -0700, Ed Lazor [EMAIL PROTECTED] wrote: Any recommendations on books, links, tutorials, etc. for PHP 5's new DOM / XML stuff? Answered some hours ago here on this list See http://news.php.net/php.general/191907 (there's certainly more ;) ) chregu -- christian

Re: [PHP] PHP-5 book

2004-07-21 Thread Philip Olson
Can someone advise me of a very good PHP-5 book. Hands down the best: Advanced PHP Programming by George Schlossnagle Regards, Philip -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP-5 book

2004-07-21 Thread Paul Kain
Wiley Publishing. PHP5 for dummies - Janet Valade. not very advanced, but its in plain english with hints and tips and technical stuff thats easy to understand. For the serious beginner though. On Wed, 21 Jul 2004 12:30:13 +0400, Nadim Attari [EMAIL PROTECTED] wrote: Hello friends, Can

Re: [PHP] PHP-5 book

2004-07-21 Thread Jurgen Stroo
And then there is Learning PHP5 (from O'Reilly), which I should go for. This one time, at band camp, Paul Kain said: Wiley Publishing. PHP5 for dummies - Janet Valade. not very advanced, but its in plain english with hints and tips and technical stuff thats easy to understand. For the

Re: [PHP] PHP-5 book

2004-07-21 Thread Jason Barnett
Philip Olson wrote: Can someone advise me of a very good PHP-5 book. Hands down the best: Advanced PHP Programming by George Schlossnagle Regards, Philip I've also read this book (*almost* cover to cover) and it is quite excellent. However, it definitely assumes that you understand the basics

Re: [PHP] PHP-5 book

2004-07-21 Thread Matthew Sims
Can someone advise me of a very good PHP-5 book. Hands down the best: Advanced PHP Programming by George Schlossnagle Regards, Philip I also recommend this book. It covers the new OO model of PHP5 very well. --Matthew Sims --http://killermookie.org -- PHP General Mailing List

Re: [PHP] PHP-5 book

2004-07-21 Thread Stephen Sadowski
Can someone advise me of a very good PHP-5 book. [snip] I've been using Zeev Leon Atkinson's _Core_PHP_Programming_ since 5beta1 was out. It was extremely helpful, and I still refer to it on a regular basis. Just ignore the section on namespace support, if they haven't had a revised printing

Re: [PHP] PHP-5 book

2004-07-21 Thread Chris Shiflett
--- Nadim Attari [EMAIL PROTECTED] wrote: Can someone advise me of a very good PHP-5 book. http://www.oreilly.com/catalog/upgradephp5/ Chris = Chris Shiflett - http://shiflett.org/ PHP Security - O'Reilly Coming Fall 2004 HTTP Developer's Handbook - Sams http://httphandbook.org/

Re: [PHP] PHP 5 Install problem:[sapi/cli/php] Error 1 ?

2004-07-02 Thread Jough P
Greetings, for anyone who is interested, I figured out what the problem was. After perusing my config options a few times I noticed one that was suspicious --with-pcre-regex=/usr I then found out these was the perl compatible regex stuff. I ended up leaving that option out and built PHP

Re: [PHP] PHP 5 Install problem:[sapi/cli/php] Error 1 ?

2004-07-02 Thread Curt Zirzow
* Thus wrote Jough P: Hi all, I'm having trouble installing PHP 5 on a Fedora Core 2 box. I get through ./configure fine but during the make I get errors like this: ext/pcre/php_pcre.lo(.text+0x2e38):/home/jough/php-5.0.0RC3/ext/pcre/ php_pcre.c:1482: undefined reference to

Re: [PHP] PHP 5 Install problem:[sapi/cli/php] Error 1 ?

2004-07-02 Thread Curt Zirzow
* Thus wrote Jough P: Greetings, for anyone who is interested, I figured out what the problem was. After perusing my config options a few times I noticed one that was suspicious --with-pcre-regex=/usr I had a feeling it was that. I then found out these was the perl compatible regex

Re: [PHP] PHP 5 Documentation

2004-05-10 Thread Martin Hjort Eriksen
Fidencio Monroy wrote: Does PHP 5 documentation exist? I have not found it in php.net. can someone send link please? Tnx http://www.zend.com/php5/zend-engine2.php /Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5 Documentation

2004-05-10 Thread Curt Zirzow
* Thus wrote Fidencio Monroy ([EMAIL PROTECTED]): Does PHP 5 documentation exist? I have not found it in php.net. There isn't any php5 documentation that is seperated from php4. There is a possibility that this will happen in the future. To see a some information about whats different about

Re: [PHP] php 5 install

2004-04-10 Thread Andy B
anybody know how to put that in english?? i have no clude what it says... - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 10, 2004 5:13 PM Subject: Re: [PHP] php 5 install Hallo und guten Tag, herzlichen Dank für Ihre Mail. Zeit zu leben

Re: [PHP] php 5 install

2004-04-10 Thread Richard Harb
have no clude what it says... - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 10, 2004 5:13 PM Subject: Re: [PHP] php 5 install Hallo und guten Tag, herzlichen Dank für Ihre Mail. Zeit zu leben und Zeit zum Schreiben machen gerade

Re: [PHP] php 5 install

2004-04-10 Thread Rainer Müller
Andy B schrieb: anybody know how to put that in english?? i have no clude what it says... - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 10, 2004 5:13 PM Subject: Re: [PHP] php 5 install Hallo und guten Tag, herzlichen Dank für Ihre Mail

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Red Wingate
There is a way, but somehow i don't like it though ( but you can find this in the documentation ): This is config.xml: ?xml version=1.0 encoding=iso-8859-1 ? config lib_error param name=error_logfile_write type=booleanFALSE/param /lib_error /config And my Testfile: $xml =

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread John W. Holmes
From: Dan Phiffer [EMAIL PROTECTED] I have what I hope to be a simple question about SimpleXML. Is it possible to get the attributes of a SimpleXML node as an associative array? Consider the following: ?php $sxe = simplexml_load_string('root attr=value/'); print_r($sxe-attributes()); //

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Dan Phiffer
Red Wingate wrote: ?xml version=1.0 encoding=iso-8859-1 ? config lib_error param name=error_logfile_write type=booleanFALSE/param /lib_error /config $xml = simplexml_load_file( 'config.xml' ); foreach ( $xml-lib_error-param AS $id = $param ) { echo $param['name'] ;

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Dan Phiffer
John W. Holmes wrote: Have you seen Example 4 here: http://us2.php.net/manual/en/ref.simplexml.php Not sure if that helps or not, though, but it looks like it's already an associative array. It certainly looks like an associative array, but the array_keys() function chokes on it: Warning:

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Red Wingate
So, this one will work out quite well ( maybe one should take a look at the documentation of attributes() :-) foreach ( $xml-lib_error-param AS $param ) { $n = 0 ; while ( is_object ( $xml-lib_error-param[$n] ) ) { foreach( $xml-lib_error-param[$n]-attributes() AS $a = $b ){

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Dan Phiffer
Red Wingate wrote: So, this one will work out quite well ( maybe one should take a look at the documentation of attributes() :-) Wow I can't believe I missed that. Hehe. I guess the lesson here is don't always trust what you get from print_r(). Thanks for the responses, -Dan foreach (

Re: [PHP] PHP 5: SimpleXML attributes

2004-04-07 Thread Red Wingate
Guess it was quite luck i saw the little note in the documentation: Note: SimpleXML has made a rule of adding iterative properties to most methods. They cannot be viewed using var_dump() or anything else which can examine objects. Guess i will have to take a look at my config parser again :-)

Re: [PHP] PHP 5

2004-02-23 Thread Adam Bregenzer
On Mon, 2004-02-23 at 14:25, Karl Timmermann wrote: I am new to the list, so sorry if this has been asked before. I was wondering if anyone knew of an approx. date for the final release of PHP 5.0? I ask because I have a project to do semi-soon that uses XML and I would rather wait for PHP

RE: [PHP] PHP 5 Book

2004-01-22 Thread Jay Blanchard
[snip] Speaking of MySQL, I heard tale that 5.0 would include VIEWS, but I can't find that in any of the new features logs. Anyone know about this? It'd be a great feature to have. Unless, of course, anyone knows how to do this without a CREATE VIEW statement. [/snip] It is called a SELECT

Re: [PHP] PHP 5 Book

2004-01-22 Thread Ben Ramsey
VIEWs are those nice things that PostgreSQL includes that MySQL doesn't yet. ;P Jay Blanchard wrote: [snip] Speaking of MySQL, I heard tale that 5.0 would include VIEWS, but I can't find that in any of the new features logs. Anyone know about this? It'd be a great feature to have. Unless,

RE: [PHP] PHP 5 Book

2004-01-22 Thread Thomas Svenson
Donald Tyler wrote: Anyone know if Rasmus (or anyone for that matter) is writing a book on PHP 5? And when it might be available? I bought Core PHP Programming, 3rd edition. It is written by Leon Atkinson together with Zeev Zend Suraski. The foreword is by Andi also Zend Gutmans. It covers

Re: [PHP] PHP 5 Book

2004-01-21 Thread daniel
Hi Anyone know if Rasmus (or anyone for that matter) is writing a book on PHP 5? And when it might be available? There was a showcase posted here before, i dont know about a book, but a pdf reference would be good. Dan (cant wait for the release of both PHP5 and Mysql 4.1) -- PHP

Re: [PHP] PHP 5 Book

2004-01-21 Thread Ben Ramsey
Speaking of MySQL, I heard tale that 5.0 would include VIEWS, but I can't find that in any of the new features logs. Anyone know about this? It'd be a great feature to have. Unless, of course, anyone knows how to do this without a CREATE VIEW statement. -Ben [EMAIL PROTECTED] wrote: (cant

Re: [PHP] PHP 5 Book

2004-01-21 Thread daniel
Speaking of MySQL, I heard tale that 5.0 would include VIEWS, but I can't find that in any of the new features logs. Anyone know about this? It'd be a great feature to have. Unless, of course, anyone knows how to do this without a CREATE VIEW statement. -Ben Its a terrible annoyance

Re: [PHP] PHP 5 Book

2004-01-21 Thread Aidan Lister
I'm using 4.1 alpha now - It is stable enough for a dev box - Nested queries are good fun. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Speaking of MySQL, I heard tale that 5.0 would include VIEWS, but I can't find that in any of the new features logs. Anyone know about this?

Re: [PHP] PHP 5 Book

2004-01-21 Thread daniel
I'm using 4.1 alpha now - It is stable enough for a dev box - Nested queries are good fun. Yes i meant for production use, i run a few machines at home, the main internet gateway is a bsd box which serves to the net. I have an internal dev box on knoppix, both are running apache 2, php 4.3,

Re: [PHP] PHP 5

2003-11-02 Thread Andi Gutmans
Hi, We tried to keep PHP 5 as much backwards compatible as possible. However, due to the object model change and major improvements in the XML extensions there might be some issues which you'll need to address. IIRC, mysqladmin runs out of the box with PHP 5 and so do many other applications. In

Re: [PHP] PHP 5

2003-11-01 Thread Chris Shiflett
--- Leonel Nunez [EMAIL PROTECTED] wrote: When php 5 is released will there be support for php 4.3.x? Support from whom? What type of support? Do you consider there to be support for 4.3.x now? Chris = My Blog http://shiflett.org/ HTTP Developer's Handbook

Re: [PHP] PHP 5

2003-11-01 Thread Pedro Pais
He is obviously asking if PHP 5 will support (run, execute, bla bla bla) code that currently runs in 4.3.x! P.S.: I don't know the answer! Chris Shiflett wrote: --- Leonel Nunez [EMAIL PROTECTED] wrote: When php 5 is released will there be support for php 4.3.x? Support from whom? What type

Re: [PHP] PHP 5

2003-11-01 Thread Marek Kilimajer
There will certainly be security updates, but it will not be futher enhanced. Leonel Nunez wrote: hello : When php 5 is released will there be support for php 4.3.x ? thanks leonel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5

2003-11-01 Thread Leonel Nunez
On Sat, 01 Nov 2003 23:42:06 +0100, Marek Kilimajer wrote: There will certainly be security updates, but it will not be futher enhanced. Leonel Nunez wrote: hello : When php 5 is released will there be support for php 4.3.x ? thanks leonel this is what I needed to now

Re: [PHP] php 5 - mysql replication

2003-09-01 Thread Curt Zirzow
* Thus wrote Moritz Steiner ([EMAIL PROTECTED]): I've heard that php 5 is going to support mysql replication, has anyone more details about it, it is already working in the beta release? Can you enlighten me as to what special things php needs to do replication? Curt -- I used to think I was

RE: [PHP] PHP 5 Usage: Possible Bug?

2003-07-31 Thread Ford, Mike [LSS]
-Original Message- From: [-^-!-%- [mailto:[EMAIL PROTECTED] Sent: 31 July 2003 05:46 I came across the following inconsistency between PHP 4 and PHP 5 Build 2195(Jul 24 2003 20:10:21). The error makes sense. I am just curious about the version inconsistency. Is this due to a

Re: [PHP] PHP 5 won't install

2003-06-26 Thread Edin Kadribasic
You need to copy dlls\*.dll to winnt\system32 too. Edin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 26, 2003 6:26 PM Subject: [PHP] PHP 5 won't install I downloaded PHP 5-dev from snaps last night but it is giving me an error when I try to

Re: [PHP] PHP 5 won't install

2003-06-26 Thread janet
In a message dated 6/26/2003 1:08:02 PM Pacific Daylight Time, [EMAIL PROTECTED] writes: You need to copy dlls\*.dll to winnt\system32 too. Yes, but my question is about the change. There are two, libxml2 and iconv, that I had to copy into the system directory before PHP 5 would run. I didn't

Re: [PHP] PHP 5 won't install

2003-06-26 Thread Edin Kadribasic
Yes, this is something that would probably be changed before the final release, maybe even in the upcoming beta1. Edin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 26, 2003 10:34 PM Subject: Re: [PHP] PHP 5 won't install

RE: [PHP] PHP 5

2003-02-18 Thread Brad Young
Your best bet is to view the recorded on-line seminars that Zeev Suraski gave on this subject. Go to: http://www.zend.com/iseminar.php View these ones: The Future of PHP and the Zend Engine 2 The Future of PHP and the Zend Engine 2 - Part 2 Examples and tutorials Brad

Re: [PHP] PHP 5

2003-02-17 Thread Stephan Seidt
Hi, Well, something very important in php5 is ZendEngine2: http://cvs.php.net/co.php/ZendEngine2/ZEND_CHANGES bye Adrian Portsmouth wrote: Hi, I have been checking out the books on Amazon.com and it seems there is a PHP5 book in the works due to be released on March the 4th. Does anyone know

Re: [PHP] PHP 5

2003-02-17 Thread Greg Donald
On Mon, 17 Feb 2003, Stephan Seidt wrote: Well, something very important in php5 is ZendEngine2: http://cvs.php.net/co.php/ZendEngine2/ZEND_CHANGES Looks like PHP5 will be a lot like java/c++ when released. Exception handling, true object support, and an inline debugger, oh my! When is the

Re: [PHP] PHP 5??

2002-05-11 Thread Rasmus Lerdorf
He has no clue. There is no PHP 5. The next version will be 4.2.1 next week and probably 4.3 after that. -Rasmus On Sat, 11 May 2002, Tim Thorburn wrote: Hi, In my seemingly never ending search for a decent hosting company, I've contacted some customer service people from Verio who tell

<    1   2