[PHP-DEV] git push failed

2012-10-29 Thread Laruence
Hey: is there any change to git box recently? I got a fail message like: Total 5 (delta 3), reused 0 (delta 0) remote: Shared object libvpx.so.0 not found, required by phpTo g...@git.php.net:php-src.git thanks -- Laruence Xinchen Hui http://www.laruence.com/ -- PHP Internals -

Re: [PHP-DEV] Recycle PHP Log

2012-10-29 Thread Pierre Joye
hi, No, we won't implement that as it is already available by default on windows. check the AutoBackupLogFiles option. For people not using windows log system but classic files, there are plenty of tools to do it as well. Cheers, On Sat, Oct 27, 2012 at 11:53 AM, Kris Craig

RE: [PHP-DEV] [RFC] Property Accessors v1.2 : isset / unset failable

2012-10-29 Thread Ford, Mike
-Original Message- From: Clint Priest [mailto:cpri...@zerocue.com] Sent: 28 October 2012 16:03 So... to be explicit here, you think in this situation: class a { public $b { set($x) { $this-b = $x; } } } $o = new a(); if(!isset($o-b)) { /* delete files */

Re: [PHP-DEV] git push failed

2012-10-29 Thread Rasmus Lerdorf
On 10/29/2012 12:20 AM, Laruence wrote: Hey: is there any change to git box recently? I got a fail message like: Total 5 (delta 3), reused 0 (delta 0) remote: Shared object libvpx.so.0 not found, required by phpTo g...@git.php.net:php-src.git This is fixed now. -- PHP

Re: [PHP-DEV] git push failed

2012-10-29 Thread Laruence
On Mon, Oct 29, 2012 at 9:16 PM, Rasmus Lerdorf ras...@lerdorf.com wrote: On 10/29/2012 12:20 AM, Laruence wrote: Hey: is there any change to git box recently? I got a fail message like: Total 5 (delta 3), reused 0 (delta 0) remote: Shared object libvpx.so.0 not found, required

Re: [PHP-DEV] [RFC] Property Accessors v1.2 : isset / unset failable

2012-10-29 Thread Stas Malyshev
Hi! So... to be explicit here, you think in this situation: class a { public $b { set($x) { $this-b = $x; } } } $o = new a(); if(!isset($o-b)) { /* delete files */ } echo (int)isset($o-b); /* This should return false and not emit any sort of warning/notice? */

Re: [PHP-DEV] [RFC] Property Accessors v1.2 : isset / unset failable

2012-10-29 Thread Stas Malyshev
Hi! Is there another class of error that would make more sense? Don't most people turn off E_NOTICE errors? Perhaps emit an E_STRICT? I always run with E_NOTICE in development, that's kind of what E_NOTICE is for :) I don't think isset() should produce any warnings/notices - this is how it

Re: [PHP-DEV] [RFC] Property Accessors v1.2 : Internal Accessor Method Visibility / Callability

2012-10-29 Thread Stas Malyshev
Hi! If I got it right now, what Stas wants is that we introduce __getFoo and __setFoo methods that will be called whenever an undefined -foo property is accessed and that the normal property accessors syntax is made nothing more than a fancy notation for this. Yes, pretty much, though

Re: [PHP-DEV] [RFC] Property Accessors v1.2 : Internal Accessor Method Visibility / Callability

2012-10-29 Thread Nikita Popov
On Mon, Oct 29, 2012 at 10:56 PM, Stas Malyshev smalys...@sugarcrm.com wrote: Hi! If I got it right now, what Stas wants is that we introduce __getFoo and __setFoo methods that will be called whenever an undefined -foo property is accessed and that the normal property accessors syntax is

Re: [PHP-DEV] PR 186: external protocols and locale independent string conversion

2012-10-29 Thread Alec Smecher
Hi all, On 27/10/12 12:49 PM, Lars Strojny wrote: Hi, thanks for bringing this up again. I digged even deeper into the whole issue of converting floats to strings and my current findings are that we can’t solve that consistently as things are already fubar’ed. The reason for that is, that in

[PHP-DEV] [RFC] ICU UConverter implementation for ext/intl

2012-10-29 Thread Sara Golemon
http://wiki.php.net/rfc/uconverter Discuss! -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php