/    Sign up×
Community /Pin to ProfileBookmark

Default parameter value?

Hi, would like to ask some elementary question.
What is the purpose of having ‘$param = value’ in the following snippet, over simply ‘$param’? Does it mean that if $param is missing when the function is called, it is given the default value of value?

[code=php]
function myfun($param = value) {

}
[/code]

TIA

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@pyroAug 22.2005 — Yes, though value would have to be within quotes...
Copy linkTweet thisAlerts:
@NogDogAug 22.2005 — Essentially that parameter becomes optional when calling the function, as long as there are no parameters following it which do not have default values. PHP will generate a warning/error if you try to call a function without supplying arguments for all non-defaulted parameters.
[code=php]
function foobar($var1, $var2, $var3 = "default value", $var4 = "")
{
# function definition...
}
# any of these calls would be legal and not generate a warning/error:
foobar("a", "b"); # var3 and var4 would use default values
foobar("a", "b", "c"); # var4 would use default value
foobar("a", "b", "c", "d");
[/code]
×

Success!

Help @chong spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...