在 PHP 中传递给函数的变量的正确名称是什么
function foo($bar,$barbar,$option="") {}
$bar 等是否有合适的术语,和/或可选变量的名称?
function foo($bar,$barbar,$option="") {}
Is there a proper term for $bar etc., and/or name for optional variables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在该示例中,
$bar
是一个参数。给定您的示例,在调用foo(1, 2, 3);
时,值1
将是一个参数。请参阅此问题了解区别。 (tl;dr 版本:参数是保存参数的槽/变量。)$option
是一个可选参数。In that example,
$bar
is a parameter. Given your example, in a call offoo(1, 2, 3);
the value1
would be an argument. See this question for the distinction. (tl;dr version: parameters are the slots/variables that hold the arguments.)$option
is an optional parameter.