在 PHP 中传递给函数的变量的正确名称是什么

发布于 2024-11-25 13:16:14 字数 100 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木格 2024-12-02 13:16:14

在该示例中,$bar 是一个参数。给定您的示例,在调用 foo(1, 2, 3); 时,值 1 将是一个参数。请参阅此问题了解区别。 (tl;dr 版本:参数是保存参数的槽/变量。)

$option 是一个可选参数

In that example, $bar is a parameter. Given your example, in a call of foo(1, 2, 3); the value 1 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文