- 函数 ```
$v = 2; // $s1 = test4(2, 2); // 会报错,因为第二个参数是需要传入对象引用的 $s1 = test4(2, $v);
?> ```
- 形参默认值
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?php // 默认形参需要卸载函数尾部,不能写在前面 function test($n, $s=2) { return $n + $s; } echo test(2); // 4 echo test(3, 3); // 6 ?> </body> </html>