阅读量:2
在 PHP 中,函数可以通过以下几种方式来传递参数:
- 位置参数传递:这是最常见的方式,参数按照函数定义的顺序传递。
function greetings($name, $message) { echo "Hello, $name! $message"; } greetings("Alice", "How are you?");
- 关键字参数传递:参数以 key => value 的形式传递,可以不按照函数定义的顺序传递。
function greetings($name, $message) { echo "Hello, $name! $message"; } greetings(message: "How are you?", name: "Alice");
- 默认参数值:可以在函数定义时为参数设置默认值,在调用函数时可以不传递这些参数。
function greetings($name = "Alice", $message = "How are you?") { echo "Hello, $name! $message"; } greetings();
- 可变参数列表:通过使用
...
运算符,函数可以接受任意数量的参数。
function sum(...$numbers) { $total = 0; foreach ($numbers as $number) { $total += $number; } echo "The sum is: $total"; } sum(1, 2, 3, 4, 5);