如何检查方法是否已定义?
How can I check if a method is defined?
我尝试将变量的值设置为“”,在 getLove
未定义的情况下:
`$money = $dollar->getCash()->getLove ?? "";`
但我仍然收到错误消息:
Attempted to call an undefined method named "getLove" of class
"Proxies__CG__\App\Entity\Happiness".
使用 method_exists,请注意,这不考虑“__call()”。
我尝试将变量的值设置为“”,在 getLove
未定义的情况下:
`$money = $dollar->getCash()->getLove ?? "";`
但我仍然收到错误消息:
Attempted to call an undefined method named "getLove" of class "Proxies__CG__\App\Entity\Happiness".
使用 method_exists,请注意,这不考虑“__call()”。