Re: [PHP-DEV] Give the Language a Rest motion (fwd)

2013-02-21 Thread Eloy Bote Falcon
2013/2/20 Derick Rethans : > Looks like it is time to forward this email from 2006 again: > > -- Forwarded message -- > Date: Thu, 09 Mar 2006 12:57:32 +0200 > From: Zeev Suraski > To: internals@lists.php.net > Subject: [PHP-DEV] Give the Language a Rest motion > > I'd like to rais

Re: [PHP-DEV] Perl logo in the php website

2012-04-01 Thread Eloy Bote Falcon
I've been owned :( 2012/4/2 Charlie Somerville > April fools > > On Monday, 2 April 2012 at 4:41 PM, Eloy Bote Falcon wrote: > > Hi internals, > > Maybe this is not the correct list to ask this, but why is the perl logo > placed in the php website, instead of the php logo? > > >

[PHP-DEV] Perl logo in the php website

2012-04-01 Thread Eloy Bote Falcon
Hi internals, Maybe this is not the correct list to ask this, but why is the perl logo placed in the php website, instead of the php logo?

Re: [PHP-DEV] RFC: Short syntax for Arrays (redux)

2011-06-03 Thread Eloy Bote Falcon
encoding. Who cares? “JSON” is the best word available. Unless you > can suggest a better word to differentiate this format from the others (one > that isn’t designed to insult anyone who disagrees with you) stop fussing > about it. > > > > John Crenshaw > > Priact

Re: [PHP-DEV] RFC: Short syntax for Arrays (redux)

2011-06-02 Thread Eloy Bote Falcon
2011/6/2 Sanford Whiteman > > I don't think anyone cares about JSON for the sake of being perfect > > JSON, I didn't intend to give that impression. > > Then you should stop saying "pure JSON" and "true JSON" constantly! > > > I'm only hoping for something that generally works on par with all >

Re: [PHP-DEV] Implicit isset/isempty check on short-ternary operator

2011-04-14 Thread Eloy Bote Falcon
What is the purpose of that generateHash function? It doesn't work in the isset check. Anyway, you can do a simple $a = array('foo'); isset($a[$x][$y][$z]) without notices at all unless any of $x $y or $z are not defined, you don't need to check the indexes one by one. 2011/4/14 Ole Markus With

Re: [PHP-DEV] Deprecating "global" + $GLOBALS, making $_REQUEST, $_GET, $_POST read-only

2010-12-09 Thread Eloy Bote Falcon
s into another variables best practice (like a manual register_globals)? In the global scope of the application I think it's cleaner to work with $_POST to overwrite the values than copying the items into variables. Inside a function/method, I agree that it's best practice to pass $_POST as a parameter and then overwrite the values as you need. Regards, Eloy Bote Falcon.

Re: [PHP-DEV] RFC: C-sharp style property get/set syntax for PHP

2010-12-01 Thread Eloy Bote Falcon
2010/12/1 Eloy Bote Falcon > 2010/12/1 Richard Quadling > > On 1 December 2010 09:22, Stas Malyshev wrote: >> > Hi! >> > >> >> Its not a matter of consistency - Properties, as a cross-language >> concept >> >> are not meant to wo

Re: [PHP-DEV] Type hinting

2010-06-02 Thread Eloy Bote Falcon
Hi! 2010/6/2 Stas Malyshev > Hi! > > > Is there some other reason / use case for wanting exceptions? So, I >> mean, where is the use case where '123abc' will be passed to a >> type-hinted field where you could catch the exception and do something >> meaningful to carry on with the execution of t

Re: [PHP-DEV] RFC: Custom Factories (SPL)

2009-11-19 Thread Eloy Bote Falcon
2009/11/19 Mathieu Suen > Eloy Bote Falcon a écrit : > > 2009/11/18 Mathieu Suen >> >> Etienne Kneuss a écrit : >>> >>> Hello, >>> >>>> On Wed, Nov 18, 2009 at 5:54 PM, Mathieu Suen < >>>> mathieu.s...@easyflirt.c

Re: [PHP-DEV] RFC: Custom Factories (SPL)

2009-11-18 Thread Eloy Bote Falcon
2009/11/18 Mathieu Suen > Etienne Kneuss a écrit : > > Hello, >> >> On Wed, Nov 18, 2009 at 5:54 PM, Mathieu Suen > >wrote: >> >> Robert Lemke a écrit : >>> >>> Hi folks, >>> after discussing the idea with various PHP developers I now felt safe enough that it's not a completely stupid

[PHP-DEV] SSL streams switching to blocking socket

2009-09-07 Thread Eloy Bote Falcon
Hi everybody! Three months ago one of my PHP applications started to hang webserver processes. The schema of the application is as follows (it's a webservice): -Main server, with LINUX, Apache and PHP, handles the requests from the clients. -Once the client is authenticated, and the request is va