PHP 类型提示到基元值?
2022-08-30 08:32:10
我想知道是否可以键入提示一个方法来期望基元类型?
像这样:
public function someMethod(string $str)
//^^^^^^
艺术
private function anotherMethod(int $num)
//^^^
就像你一样:
private function otherMethod(Person $rambo)
//^^^^^^
这在php中可能吗?