| 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 | |
| Brian Moon | Feb 4, 2007 11:29 pm | |
| Antony Dovgal | Feb 4, 2007 11:47 pm | |
| Christian Schneider | Feb 5, 2007 2:20 am | |
| Lukas Kahwe Smith | Feb 5, 2007 2:28 am | |
| Christian Schneider | Feb 5, 2007 2:44 am | |
| LAUPRETRE François (P) | Feb 5, 2007 2:53 am | |
| ivai...@gmail.com | Feb 5, 2007 3:00 am | |
| Ford, Mike | Feb 5, 2007 3:18 am | |
| Ford, Mike | Feb 5, 2007 3:29 am | |
| Richard Quadling | Feb 5, 2007 4:16 am | |
| Ford, Mike | Feb 5, 2007 4:35 am | |
| Christian Schneider | Feb 5, 2007 4:54 am | |
| 48 later messages | ||
| Subject: | RE: [PHP-DEV] Syntactic improvement to array | |
|---|---|---|
| From: | Andi Gutmans (an...@zend.com) | |
| Date: | Feb 4, 2007 8:15:40 am | |
| List: | net.php.lists.internals | |
I would definitely not advocate to use [] in a type hint. For the same reason
you don't use array() but array :)
It'd be:
function typeHinted(array $array = []) {
...
}
I don't see any issue with that. I'm talking about the construct that allows you
to create an array.
Andi
-----Original Message----- From: Hannes Magnusson [mailto:hann...@gmail.com] Sent: Sunday, February 04, 2007 6:30 AM To: Andi Gutmans Cc: inte...@lists.php.net Subject: Re: [PHP-DEV] Syntactic improvement to array
Hi Andi
function typeHinted([] $array = []) { // type hint array, default to empty one if(count($array)) { array_merge($array, ["foo" => []]); // merge $array with array("foo" => array()); return $array; } return []; // empty array }
typeHinted([1 => [1 => []]]); // array(1 => array(1 => array()));
-1 from me
-Hannes
On 2/4/07, Andi Gutmans <an...@zend.com> wrote:
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
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php





