Re: [PHP-DEV] Re: APC in trunk

2010-08-09 Thread Michael Wallner
On 08/10/2010 01:57 AM, Philip Olson wrote: Moving an extension from PECL to Core has side effects, like typically the PECL version dies. Sadly, this is very true. Well, I think many extensions should live in PECL and be bundled during the release process (instead of being moved into core at

Re: [PHP-DEV] 5.4 Alpha?

2010-08-09 Thread Adam Harvey
On 10 August 2010 07:28, Pierre Joye wrote: > On Mon, Aug 9, 2010 at 11:56 PM, Kalle Sommer Nielsen wrote: >> With the recent additions to 5.4, aren't we getting closer to have a >> public alpha release, or just a development test as we have many great >> additions and changes to the current trun

[PHP-DEV] SVN Account Request: kriscraig

2010-08-09 Thread Kris Craig
Currently, I'm working on several parallel feature additions to the date extension. Specifically with regard to accurate calculation of seasonal equinox, an added paremeter character to display the current season in the date() function, limited hemisphere detection based on the timezone setting

答复: [PHP-DEV] 5.4 Alpha?

2010-08-09 Thread 高春辉
http://news.php.net/php.internals/49186 I hope 5.4 beta complete support LFS. -邮件原件- 发件人: kalle@gmail.com [mailto:kalle@gmail.com] 代表 Kalle Sommer Nielsen 发送时间: 2010年8月10日 5:56 收件人: Internals 主题: [PHP-DEV] 5.4 Alpha? Greetings geeks With the recent additions to 5.4, aren't we ge

Re: [PHP-DEV] Re: APC in trunk

2010-08-09 Thread Philip Olson
On Aug 9, 2010, at 4:29 PM, Pierre Joye wrote: > hi, > On Mon, Aug 9, 2010 at 11:54 PM, Kalle Sommer Nielsen wrote: >> Just a ping on this one, with the 3.1.4 release would anyone be in >> favour of moving it into trunk now? If not, then I can do it with some >> help from someone who have moved

Re: [PHP-DEV] Re: APC in trunk

2010-08-09 Thread Pierre Joye
hi, It is still beta. But Gopal and Rasmus should decide when it is ready. On Mon, Aug 9, 2010 at 11:54 PM, Kalle Sommer Nielsen wrote: > Just a ping on this one, with the 3.1.4 release would anyone be in > favour of moving it into trunk now? If not, then I can do it with some > help from someon

Re: [PHP-DEV] 5.4 Alpha?

2010-08-09 Thread Pierre Joye
hi, Huge -1 here. We are light years away to even be able to define what will be php-next. Let discuss that September, at the soonest. Cheers, On Mon, Aug 9, 2010 at 11:56 PM, Kalle Sommer Nielsen wrote: > Greetings geeks > > With the recent additions to 5.4, aren't we getting closer to have a

[PHP-DEV] 5.4 Alpha?

2010-08-09 Thread Kalle Sommer Nielsen
Greetings geeks With the recent additions to 5.4, aren't we getting closer to have a public alpha release, or just a development test as we have many great additions and changes to the current trunk or atleast set up some sort of roadmap for what we all like to have in 5.4, or be that 6.0 as thats

[PHP-DEV] Re: APC in trunk

2010-08-09 Thread Kalle Sommer Nielsen
Just a ping on this one, with the 3.1.4 release would anyone be in favour of moving it into trunk now? If not, then I can do it with some help from someone who have moved a pecl extension into core before. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Developmen

Re: [PHP-DEV] Indexing an array

2010-08-09 Thread Gustavo Lopes
On Mon, 09 Aug 2010 12:44:03 +0100, mathieu.suen wrote: On 08/06/2010 04:42 PM, Gustavo Lopes wrote: On Fri, 06 Aug 2010 15:33:18 +0100, mathieu.suen wrote: For now you can only index an array using a scalar type or a string. Is there some rfc or work going on to enlarge the possibility s

Re: [PHP-DEV] How to get script filename in module RINIT function

2010-08-09 Thread Bostjan Skufca
I don't think I made myself exactly clear. There are 2 use cases I would like to consider: 1. CLI: by using "php /full/path/to/script.php" or "cd /full/path/to && php script.php" 2. Apache DSO: going to http://www.domain.com/script.php which in turn 'executes' script "/full/path/to/script.php" In

Re: [PHP-DEV] How to get script filename in module RINIT function

2010-08-09 Thread Johannes Schlüter
On Mon, 2010-08-09 at 13:32 +0200, Bostjan Skufca wrote: > Hi all! > > I am developing a small PHP extension and I ATM can't figure out how to get > to $_SERVER['SCRIPT_FILENAME'] content while in PHP_RINIT or PHP_RSHUTDOWN > function. Can someone please hint me with this one? The simple answer i

Re: [PHP-DEV] Indexing an array

2010-08-09 Thread Johannes Schlüter
On Mon, 2010-08-09 at 13:47 +0200, mathieu.suen wrote: > > outputs ... > > > > Array > > ( > > [1365443950] => First > > [1235256771] => Second > > [520059180] => Third > > [486985268] => Fourth > > ) > > Well that is not the expected behavior since if you call array_keys y

Re: [PHP-DEV] Indexing an array

2010-08-09 Thread mathieu.suen
On 08/06/2010 07:46 PM, Stas Malyshev wrote: Hi! For now you can only index an array using a scalar type or a string. Is there some rfc or work going on to enlarge the possibility so that it is possible to have some other object like: I think SplObjectStorage implements most common use-case f

Re: [PHP-DEV] Indexing an array

2010-08-09 Thread mathieu.suen
On 08/06/2010 04:44 PM, Richard Quadling wrote: On 6 August 2010 15:33, mathieu.suen wrote: Hi, For now you can only index an array using a scalar type or a string. Is there some rfc or work going on to enlarge the possibility so that it is possible to have some other object like: - closu

Re: [PHP-DEV] Indexing an array

2010-08-09 Thread mathieu.suen
On 08/06/2010 04:42 PM, Gustavo Lopes wrote: On Fri, 06 Aug 2010 15:33:18 +0100, mathieu.suen wrote: Hi, For now you can only index an array using a scalar type or a string. Is there some rfc or work going on to enlarge the possibility so that it is possible to have some other object like:

[PHP-DEV] How to get script filename in module RINIT function

2010-08-09 Thread Bostjan Skufca
Hi all! I am developing a small PHP extension and I ATM can't figure out how to get to $_SERVER['SCRIPT_FILENAME'] content while in PHP_RINIT or PHP_RSHUTDOWN function. Can someone please hint me with this one? Thanks, b.