| From | Sent On | Attachments |
|---|---|---|
| Andi Gutmans | Feb 3, 2007 11:24 pm | |
| Marcus Boerger | Feb 4, 2007 2:09 am | |
| phpxcache | Feb 4, 2007 3:18 am | |
| Pierre | Feb 4, 2007 3:24 am | |
| Edin Kadribasic | Feb 4, 2007 5:00 am | |
| Johannes Schlüter | Feb 4, 2007 5:17 am | |
| Nico Haase | Feb 4, 2007 5:43 am | |
| Hannes Magnusson | Feb 4, 2007 5:53 am | |
| Christian Schneider | Feb 4, 2007 6:23 am | |
| Hannes Magnusson | Feb 4, 2007 6:29 am | |
| Christian Schneider | Feb 4, 2007 6:57 am | |
| Pierre | Feb 4, 2007 7:23 am | |
| Andi Gutmans | Feb 4, 2007 8:15 am | |
| Andi Gutmans | Feb 4, 2007 8:16 am | |
| Lukas Kahwe Smith | Feb 4, 2007 8:29 am | |
| Rasmus Lerdorf | Feb 4, 2007 8:36 am | |
| Zeev Suraski | Feb 4, 2007 8:58 am | |
| Ilia Alshanetsky | Feb 4, 2007 9:27 am | |
| Andi Gutmans | Feb 4, 2007 9:39 am | |
| Ilia Alshanetsky | Feb 4, 2007 9:48 am | |
| Pierre | Feb 4, 2007 10:13 am | |
| Steph | Feb 4, 2007 10:16 am | |
| Steph | Feb 4, 2007 10:17 am | |
| Lukas Kahwe Smith | Feb 4, 2007 10:29 am | |
| Mike Robinson | Feb 4, 2007 10:30 am | |
| Ilia Alshanetsky | Feb 4, 2007 10:33 am | |
| Lukas Kahwe Smith | Feb 4, 2007 10:37 am | |
| Edin Kadribasic | Feb 4, 2007 10:37 am | |
| Pierre | Feb 4, 2007 10:40 am | |
| Derick Rethans | Feb 4, 2007 10:56 am | |
| Derick Rethans | Feb 4, 2007 11:00 am | |
| Marcus Boerger | Feb 4, 2007 11:06 am | |
| Stanislav Malyshev | Feb 4, 2007 12:18 pm | |
| Steph | Feb 4, 2007 12:29 pm | |
| Stefan Walk | Feb 4, 2007 12:45 pm | |
| Steph | Feb 4, 2007 12:52 pm | |
| Zeev Suraski | Feb 4, 2007 1:21 pm | |
| Pierre | Feb 4, 2007 1:26 pm | |
| Zeev Suraski | Feb 4, 2007 1:40 pm | |
| Pierre | Feb 4, 2007 1:50 pm | |
| Zeev Suraski | Feb 4, 2007 2:02 pm | |
| Pierre | Feb 4, 2007 2:10 pm | |
| Robert Cummings | Feb 4, 2007 3:11 pm | |
| Sara Golemon | Feb 4, 2007 3:25 pm | |
| Richard Lynch | Feb 4, 2007 8:20 pm | |
| Richard Lynch | Feb 4, 2007 8:22 pm | |
| Richard Lynch | Feb 4, 2007 8:26 pm | |
| Richard Lynch | Feb 4, 2007 8:48 pm | |
| Richard Lynch | Feb 4, 2007 8:52 pm | |
| Richard Lynch | Feb 4, 2007 8:54 pm | |
| Gregory Beaver | Feb 4, 2007 9:13 pm | |
| 60 later messages | ||
| Subject: | Syntactic improvement to array | |
|---|---|---|
| From: | Andi Gutmans (an...@zend.com) | |
| Date: | Feb 3, 2007 11:24:59 pm | |
| List: | net.php.lists.internals | |
Hi,
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.
Andi





