|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-08-05 09:10 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 16:00:01 2025 UTC |
Description: ------------ I use associative arrays for so many things like function/method parameters, database records, creating URL's and HTML tags. I'm looking at tons of array creation code in my application because the only way to create an array is by using the array("key1"=>"value1", "key2"=>"value2") construct. The following construct would be a very good addition and is also used in other (script)languages: {"key1"=>"value1", "key2"=>"value2"}. I sincerely hope there is some way to implemented this new construct. Thanks for reading this.