Re: [PHP-DEV] PHP 5.2.1 twice as slow?

2007-02-26 Thread Andrew Hutchings
Antony Dovgal wrote: On 02/26/2007 05:12 AM, Andrew Hutchings wrote: Much better than the score I was getting for 5.2.1 although some of the tests are slightly slower than 5.2.0. I'm sure if won't see any difference if you run the bench a dozen of times, the results depend on current system

[PHP-DEV] PHP 4 Bug Summary Report

2007-02-26 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (631 total including feature requests) ===[*Programming Data Structures]= 40496 Assigned Test bug35239.phpt still fails ===[Apache2

[PHP-DEV] PHP 5 Bug Summary Report

2007-02-26 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (671 total including feature requests) ===[*Compile Issues]== 39372 Suspended Incompatibility in the PHP API.

[PHP-DEV] RE : [PHP-DEV] Simulating require_once within an extension

2007-02-26 Thread P
Sorry, I can't help with your C extension but I can give you a solution I implemented in PHP for the same needs. I did using two mechanisms : - A stream wrapper to allow require_once to reference a virtual path. Not required if you require 'real' files. In PHK, I need it because I

[PHP-DEV] PHP 6 Bug Summary Report

2007-02-26 Thread internals
PHP 6 Bug Database summary - http://bugs.php.net Num Status Summary (42 total including feature requests) ===[*General Issues]== 26771 Suspended register_tick_funtions crash under threaded webservers 27372 Verified parse error

Re: [PHP-DEV] PHP 5.2.1 twice as slow?

2007-02-26 Thread Andrew Hutchings
Antony Dovgal wrote: I'm sure if won't see any difference if you run the bench a dozen of times, the results depend on current system status. I've just compiled both 5.2.0 and 5.2.1 on my low powered trash box (a 1GHz ViA EPIA) using: ./configure --disable-all --disable-cgi No CFLAGS were

[PHP-DEV] CVS Account Request: mrtinez

2007-02-26 Thread Mario Ramirez Martinez
Translation smarty manual in spanish -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CVS Account Request: mrtinez

2007-02-26 Thread Nuno Lopes
confirmed. He is the smarty Spanish docs maintainer for quite some time now. Nuno - Original Message - From: Mario Ramirez Martinez [EMAIL PROTECTED] To: internals@lists.php.net Sent: Monday, February 26, 2007 1:53 PM Subject: [PHP-DEV] CVS Account Request: mrtinez Translation

[PHP-DEV] ext/session/mod_mm.c compile failure for PHP5_2 CVS

2007-02-26 Thread Luca Longinotti
Hi, just wanted to make you notice: ext/session/mod_mm.o: In function `zm_startup_ps_mm': mod_mm.c:(.text+0x754): undefined reference to `mempcy' collect2: ld returned 1 exit status make: *** [sapi/cli/php] Error 1 Seems to be just a typo introduced with

Re: [PHP-DEV] PHP 5.2.1 twice as slow?

2007-02-26 Thread Stanislav Malyshev
I'm sure if won't see any difference if you run the bench a dozen of times, the results depend on current system status. I tried to run test on my machine, could not reproduce the effect. -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED] http://www.zend.com/ -- PHP Internals -

Re: [PHP-DEV] ext/session/mod_mm.c compile failure for PHP5_2 CVS

2007-02-26 Thread Antony Dovgal
On 02/26/2007 08:29 PM, Luca Longinotti wrote: Hi, just wanted to make you notice: ext/session/mod_mm.o: In function `zm_startup_ps_mm': mod_mm.c:(.text+0x754): undefined reference to `mempcy' collect2: ld returned 1 exit status make: *** [sapi/cli/php] Error 1 Fixed, thanks for the heads up.

[PHP-DEV] suggestion SplFileInfo

2007-02-26 Thread Arnold Daniels
Hi, I've got a few feature suggestions for SplFileInfo and DirectoryIteratorRecursive. I'm creating yet another php file manager. I've noticed that I needed to add quite some code to make it act the way gnome nautilus does. I believe these feature would be a good addition. SplFileInfo: -

[PHP-DEV] Memory usage and big arrays

2007-02-26 Thread Brian Moon
I was doing some testing with some cache files we use and found some shocking memory usage with big arrays. Basically, when creating a large array in a verbose manner using $CATEGORIES[2][name] = foo; syntax, the memory usage was much higher than other methods. For the particular file I was

Re: [PHP-DEV] suggestion SplFileInfo

2007-02-26 Thread Marcus Boerger
Hello Arnold, some interesting ideas indeed. See my comments below. best regards marcus Monday, February 26, 2007, 8:48:32 PM, you wrote: Hi, I've got a few feature suggestions for SplFileInfo and DirectoryIteratorRecursive. I'm creating yet another php file manager. I've noticed that

RE: [PHP-DEV] PHP 5.2.1 twice as slow?

2007-02-26 Thread Mike Robinson
Stanislav Malyshev wrote: I tried to run test on my machine, could not reproduce the effect. I've run the bench script on my Redhat-FC6 box with 5.2.0 and 5.2.1, configs exactly the same. I could not reproduce the effect either. [phew] Best Regards Mike Robinson -- PHP Internals - PHP

Re: [PHP-DEV] PHP 5.2.1 twice as slow?

2007-02-26 Thread Andrew Hutchings
Mike Robinson wrote: Stanislav Malyshev wrote: I tried to run test on my machine, could not reproduce the effect. I've run the bench script on my Redhat-FC6 box with 5.2.0 and 5.2.1, configs exactly the same. I could not reproduce the effect either. [phew] I dunno what the heck I am doing

Re: [PHP-DEV] suggestion SplFileInfo

2007-02-26 Thread Arnold Daniels
Hi again, Thanks for your response. I've put some new comments below. Marcus Boerger wrote: Hello Arnold, some interesting ideas indeed. See my comments below. best regards marcus Monday, February 26, 2007, 8:48:32 PM, you wrote: Hi, I've got a few feature suggestions for