[PHP-DEV] exec()'s output array overwritten in PHP 5

2004-07-01 Thread Daniel Convissor
Hi: In PHP 4, when using exec() multiple times with the same array in the "output" parameter, the data from subsequent exec() calls appended the new results to the existing array. This is as the manual says. When PHP 5 first came out, each call to exec() overwrote the prior array. At some po

[PHP-DEV] handling warnings/notices as elegantly as exceptions in php5

2004-07-01 Thread Greg Beaver
Hello, It is too early to do anything concrete, but I wonder if PHP 5.1 or later could add a non-fatal version of throw to handle warnings/errors/notices. A trigger_error() that accepted an object similar to Exception would be a good solution. This way, all the benefits of the Exception class

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Marcus Boerger
Hello Sterling, i have that on my personal 5.1 todo list since months... marcus Thursday, July 1, 2004, 6:29:53 PM, you wrote: > this would still not suffice for a proper serialization, overloaded > objects should have serialize and unserialize handlers something > for 5.1 methinks. > -s

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Sebastian Bergmann
Andi Gutmans wrote: The object handle is not a unique identifier. Are there any plans on implementing a really unique identifier to objects? This would, among other things, allow objects to be used as array keys. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpe

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Moriyoshi Koizumi
This is the new one. Hope it is ready to commit this time. http://www.voltex.jp/patches/bug28325-preliminary-20040701.patch.diff Two untidy bitshifts are intended to form an atomic bit rotation and are somewhat necessary for the uniqueness of the hash value. At least 31 object handles of the same

[PHP-DEV] Re: [PEAR-DEV] Call for test: Comment system - II

2004-07-01 Thread Daniel Convissor
Sorry, wrong list. (I've got to change my aliases so I don't do this again...) --Dan -- T H E A N A L Y S I S A N D S O L U T I O N S C O M P A N Y data intensive web and database programming http://www.AnalysisAndSolutions.com/ 4015 7th Ave #4, Brooklyn NY

[PHP-DEV] Re: [PEAR-DEV] Call for test: Comment system - II

2004-07-01 Thread Daniel Convissor
Toby: On Thu, Jul 01, 2004 at 10:57:18AM +0200, Tobias Schlitt wrote: > Hi Christian Wenz! You wrote: > > * Using on view.php is probably not a good idea (TM, again), since > > in that case longer lines are not wrapped automatically (see id=61). > > True. I will either change that to a div with

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Andi Gutmans
Yeah it might make sense to think of something like that. What does serializing a SimpleXML object do today? Andi At 09:29 AM 7/1/2004 -0700, Sterling Hughes wrote: this would still not suffice for a proper serialization, overloaded objects should have serialize and unserialize handlers someth

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Sterling Hughes
this would still not suffice for a proper serialization, overloaded objects should have serialize and unserialize handlers something for 5.1 methinks. -sterling On Thu, 1 Jul 2004 16:03:09 +0900, Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote: > > > On 2004/07/01, at 14:25, Andi Gutmans wrote

Re: [PHP-DEV] Re: Fix for bug #28325

2004-07-01 Thread Moriyoshi Koizumi
On 2004/07/01, at 14:25, Andi Gutmans wrote: Hi Moriyoshi, The object handle is not a unique identifier. Different object types (e.g. PHP objects, SimpleXML objects) can have the same object handle. The real unique identifier is object handle + object handlers array or more useful in your case,