php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #65772 Implement "default" as a possible function/method argument value in calls
Submitted: 2013-09-27 06:49 UTC Modified: 2018-09-14 15:10 UTC
Votes:2
Avg. Score:4.5 ± 0.5
Reproduced:1 of 2 (50.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: matteo_tassinari_TM at libero dot it Assigned:
Status: Wont fix Package: Variables related
PHP Version: Irrelevant OS: Any
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: matteo_tassinari_TM at libero dot it
New email:
PHP Version: OS:

 

 [2013-09-27 06:49 UTC] matteo_tassinari_TM at libero dot it
Description:
------------
I think it would be useful if we could use the "default" keyword when passing parameters to a method/function so that the value for the parameter for which "default" is passed automatically takes the defined default value, without need of knowing it.

Test script:
---------------
For example, consider this:

function justToTest($a = 10, $b = 0) {
  var_dump($a, $b);
}

justToTest();
justToTest(5);
justToTest(default, 5);

Expected result:
----------------
The first call should show

int 10
int 0


The second call should show

int 5
int 0


The third call should show

int 10
int 5


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-09-27 08:03 UTC] requinix@php.net
Existing RFC for this exact thing: https://wiki.php.net/rfc/skipparams
 [2013-09-27 18:46 UTC] aharvey@php.net
-Status: Open +Status: Suspended -Assigned To: +Assigned To: stas
 [2013-09-27 18:46 UTC] aharvey@php.net
We don't really have a status for "it's in an active RFC", so I guess I'll 
suspend this and assign it to Stas for now, since it's his RFC.
 [2015-01-11 07:35 UTC] stas@php.net
-Status: Suspended +Status: Open
 [2018-09-14 15:04 UTC] abonnementspaul at gmail dot com
Do we have any update on this? I know It's been a while but I would still love to see this implemented.
 [2018-09-14 15:10 UTC] requinix@php.net
-Status: Assigned +Status: Wont fix -Assigned To: stas +Assigned To:
 [2018-09-14 15:10 UTC] requinix@php.net
The RFC was declined. Reading through the discussion, the main issue was that people favored solving the problem with named parameters instead of default values.

That is, something like
  justToTest(b = 5)
 [2018-09-14 15:19 UTC] spam2 at rhsoft dot net
but now we have nothing, not named params, no way to skip params and no way to state "use whatever default" which makes PHP terrible in that aspect given that visual basic 20 years ago had not such issues 

you can't set the 5th param without the other 4 before which leads to have seek for every caller if you decide to change the defaults and a inline comment if the default is intended or you can't tell later if it was an explicit arbitary value or the default
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 12:01:28 2024 UTC