现在,在 PHP 8 中,我们可以使用 命名参数.
编写函数例如,假设您有一个函数 add($id, $title, $quantity)。您可以通过以下方式调用它:
add(id: 1, title: "Phone", quantity: 2); add(title: "Phone", id: 2, quantity: 2);
命名参数:此功能允许您在调用函数时更改参数的顺序,只要您在函数定义中正确指定参数名称即可。
//Example 1: function createUser($name, $role = 'user', $isActive = true) { echo $name."-".$role; } createUser(name: 'Hòa Nguyễn', isActive: false, role:"admin"); //Example 2: class CartService{ public function add(int $id, string $title, bool $isActive = true) : string { return "$id, $title đã được thêm vào giỏ hàng"; } } $cart = new CartService; echo $cart->add(1, "Phone", true)."\n"; echo $cart->add(id: 2, isActive: true, title: "hoa")."\n"; //Example 3: function sendEmail(string $from, string $to, string $subject, string $message, bool $isHtml = false) { echo "From: $from\n"; echo "To: $to\n"; echo "Subject: $subject\n"; echo "Message: $message\n"; echo "Is HTML: " . ($isHtml ? 'Yes' : 'No') . "\n"; } //Gọi hàm với Named Arguments sendEmail( from: "hoanguyen@example.com", to: "recipient@example.com", message: "This is a test email. Hòa Nguyễn Coder", subject: "Hòa Nguyễn Coder", isHtml: true);
PHP 版本 8.0 - 命名参数
30 PHÚT DEV HỌC BUỔI TỐI | ? Vừa chill vừa học lập trình
以上是PHP 版本 - 命名参数的详细内容。更多信息请关注PHP中文网其他相关文章!