0

我正在使用 php 8.0,但由于某种原因,联合类型和可为空的类型似乎无法根据文档工作。?Type 或 Type|null 应该根据文档(https://www.php.net/manual/en/language.types.declarations.php#language.types.declarations.union)使参数成为可选

但我有一个例外。

8.0.0
PHP Fatal error:  Uncaught ArgumentCountError: Too few arguments to function test(), 1 passed in /var/www/test/test.php on line 10 and exactly 2 expected in /var/www/test/test.php:4
Stack trace:
#0 /var/www/test/test.php(10): test()
#1 {main}
  thrown in /var/www/test/test.php on line 4

简单的测试代码

//function test(string $hello, ?string $world) {
function test(string $hello, string|null $world) {
        return $hello . ' ' . ($world ?? 'world');
}

echo phpversion() . PHP_EOL;
// Outputs 8.0.0

echo test('hello') . PHP_EOL;
// Expected output: hello world

echo test('hola','mundo');
// Expected output: hola mundo

这里有什么问题?

4

1 回答 1

2

在PHP string|null8 中用作类型提示并不意味着参数是可选的,只是它可以为空。这意味着您可以将 null 作为值(或字符串,显然)传递,但参数仍然是必需的。

如果希望参数是可选的,则需要提供默认值,如下所示:

function test(string $hello, string|null $world = null) {
    // ...
}

https://3v4l.org/gXLDH

在早期版本的 PHP 中也是如此,使用?string语法;该参数仍然是必需的,但 null 是一个有效值。

于 2020-12-26T16:22:39.463 回答