命名引數
function test($name, $age='18', $sex='男') {
echo $name . '-------' . $age . '--------'. $sex;
}
test('Landy', age: 20, sex: '女'); //Landy-------20--------女
還可以跳過引數
test('Landy', sex: '女'); //Landy-------18--------女
引數的順序可以不固定了
test(age: 30, sex: '女', name: 'tom'); //tom-------30--------女
<?php
class Person {
public static function test($name, $age) {
echo $name.'|'.$age;
}
}
Person::test(age:100, name:'Landy'); //Landy|100
還可以這樣
function test1($arg1,$arg2, ...$args) {
print_r($args);
}
test1(1,2, name:'Landy', age:11, sex:2);
Array
(
[name] => Landy
[age] => 11
[sex] => 2
)
向下不相容,PHP8.0後的函式都可以使用命名引數
match表示式
$a = 8.0;
echo match($a) {
8.0 => '匹配8.0',
'8.0' => 'test 8.0',
default => '沒有匹配值'
}; //匹配8.0
可以和表示式匹配
function test3() {
return 8.0;
}
$a = 8.0;
echo match($a) {
test3() => '匹配函式',
8.0 => '匹配8.0',
'8.0' => 'test 8.0',
9,10,11 => '多次匹配', //多次匹配
default => '沒有匹配值'
}; //匹配函式
match為強型別匹配,還有一點需要注意的是之前match(){} 花括號後要寫;
,switch是不用的
建構函式里可直接定義屬性
class Point {
public function __construct(
public float $x = 1.0,
public float $y = 2.0,
public float $z = 3.0,
) {}
}
echo (new Point())->x; // 1
本作品採用《CC 協議》,轉載必須註明作者和本文連結