我正在使用 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
这里有什么问题?