atom feed111 messages in net.php.lists.internalsRe: [PHP-DEV] Syntactic improvement t...
FromSent OnAttachments
Andi GutmansFeb 3, 2007 11:24 pm 
Marcus BoergerFeb 4, 2007 2:09 am 
phpxcacheFeb 4, 2007 3:18 am 
PierreFeb 4, 2007 3:24 am 
Edin KadribasicFeb 4, 2007 5:00 am 
Johannes SchlüterFeb 4, 2007 5:17 am 
Nico HaaseFeb 4, 2007 5:43 am 
Hannes MagnussonFeb 4, 2007 5:53 am 
Christian SchneiderFeb 4, 2007 6:23 am 
Hannes MagnussonFeb 4, 2007 6:29 am 
Christian SchneiderFeb 4, 2007 6:57 am 
PierreFeb 4, 2007 7:23 am 
Andi GutmansFeb 4, 2007 8:15 am 
Andi GutmansFeb 4, 2007 8:16 am 
Lukas Kahwe SmithFeb 4, 2007 8:29 am 
Rasmus LerdorfFeb 4, 2007 8:36 am 
Zeev SuraskiFeb 4, 2007 8:58 am 
Ilia AlshanetskyFeb 4, 2007 9:27 am 
Andi GutmansFeb 4, 2007 9:39 am 
Ilia AlshanetskyFeb 4, 2007 9:48 am 
PierreFeb 4, 2007 10:13 am 
StephFeb 4, 2007 10:16 am 
StephFeb 4, 2007 10:17 am 
Lukas Kahwe SmithFeb 4, 2007 10:29 am 
Mike RobinsonFeb 4, 2007 10:30 am 
Ilia AlshanetskyFeb 4, 2007 10:33 am 
Lukas Kahwe SmithFeb 4, 2007 10:37 am 
Edin KadribasicFeb 4, 2007 10:37 am 
PierreFeb 4, 2007 10:40 am 
Derick RethansFeb 4, 2007 10:56 am 
Derick RethansFeb 4, 2007 11:00 am 
Marcus BoergerFeb 4, 2007 11:06 am 
Stanislav MalyshevFeb 4, 2007 12:18 pm 
StephFeb 4, 2007 12:29 pm 
Stefan WalkFeb 4, 2007 12:45 pm 
StephFeb 4, 2007 12:52 pm 
Zeev SuraskiFeb 4, 2007 1:21 pm 
PierreFeb 4, 2007 1:26 pm 
Zeev SuraskiFeb 4, 2007 1:40 pm 
PierreFeb 4, 2007 1:50 pm 
Zeev SuraskiFeb 4, 2007 2:02 pm 
PierreFeb 4, 2007 2:10 pm 
Robert CummingsFeb 4, 2007 3:11 pm 
Sara GolemonFeb 4, 2007 3:25 pm 
Richard LynchFeb 4, 2007 8:20 pm 
Richard LynchFeb 4, 2007 8:22 pm 
Richard LynchFeb 4, 2007 8:26 pm 
Richard LynchFeb 4, 2007 8:48 pm 
Richard LynchFeb 4, 2007 8:52 pm 
Richard LynchFeb 4, 2007 8:54 pm 
Gregory BeaverFeb 4, 2007 9:13 pm 
Brian MoonFeb 4, 2007 11:29 pm 
Antony DovgalFeb 4, 2007 11:47 pm 
Christian SchneiderFeb 5, 2007 2:20 am 
Lukas Kahwe SmithFeb 5, 2007 2:28 am 
Christian SchneiderFeb 5, 2007 2:44 am 
LAUPRETRE François (P)Feb 5, 2007 2:53 am 
ivai...@gmail.comFeb 5, 2007 3:00 am 
Ford, MikeFeb 5, 2007 3:18 am 
Ford, MikeFeb 5, 2007 3:29 am 
Richard QuadlingFeb 5, 2007 4:16 am 
Ford, MikeFeb 5, 2007 4:35 am 
Christian SchneiderFeb 5, 2007 4:54 am 
LAUPRETRE François (P)Feb 5, 2007 5:37 am 
Brian MoonFeb 5, 2007 9:29 am 
Stanislav MalyshevFeb 5, 2007 10:01 am 
Andrei ZmievskiFeb 5, 2007 10:02 am 
Stanislav MalyshevFeb 5, 2007 10:04 am 
Andrei ZmievskiFeb 5, 2007 10:06 am 
Brian MoonFeb 5, 2007 10:16 am 
Stanislav MalyshevFeb 5, 2007 10:24 am 
Todd RuthFeb 5, 2007 10:28 am 
Brian MoonFeb 5, 2007 11:07 am 
Andrei ZmievskiFeb 5, 2007 11:17 am 
Andrei ZmievskiFeb 5, 2007 11:18 am 
Brian MoonFeb 5, 2007 11:32 am 
Robert CummingsFeb 5, 2007 12:28 pm 
Stanislav MalyshevFeb 5, 2007 12:30 pm 
Richard LynchFeb 5, 2007 3:30 pm 
Richard LynchFeb 5, 2007 3:33 pm 
31 later messages
Subject:Re: [PHP-DEV] Syntactic improvement to array
From:Derick Rethans (der@php.net)
Date:Feb 4, 2007 10:56:02 am
List:net.php.lists.internals

On Sat, 3 Feb 2007, Andi Gutmans wrote:

I thought I may have brought this up a long time ago but couldn't find anything in the archives. For a long time already I've been thinking about possibly adding a new syntax for array(...) which would be shorter. I'd suggest [...]. While I am usually not in favor of having more than one way to do things, I think it'd look much more elegant especially (but not only) for nested arrays.

So what I'm thinking of is: array(1, 2, 3) == [1, 2, 3] array(1, 2, array("foo", "bar")) == [1, 2, ["foo", "bar"]] array("key" => 1, "key2" => 2) == ["key" => 1, "key2" => 2]

$arr = [1, 2, 3] vs. $arr = array(1, 2, 3)

Well enough examples given :) I think it's not worth doing unless there's overwhelming support as it's not desperately needed. But I'd be interested to hear people's thoughts. It seems implementation shouldn't be an issue but I'd have to dive a bit deeper.

That gets a big -1 from me, unless you misposed this mail and it should have ended up on inte@perl.org or something ;-)

regards, Derick