标签: php parameters nullable
两者都能正常工作
function foo (?int $a = null) {}
function foo (int $a = null) {}
但是有什么约定,如果默认值可以为?,我们应该在参数前加上null前缀吗?
?
null