|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-21 07:26 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 20:00:01 2025 UTC |
I realy think it would be nice to be able to set function arguments by their name. Especially when you have default arguments in a function. An example: function aaa( a = 'A', b = 'B', c = 'C' ) { } aaa( b -> 'D' ); Would call function aaa, set argument b to 'D' and leave the other arguments unchanged.