一尘不染

方法声明应与PHP中的父方法兼容

php

严格标准:childClass :: customMethod()的声明应与parentClass :: customMethod()的声明兼容

PHP中此错误的可能原因是什么?在哪里可以找到有关 兼容的信息


阅读 371

收藏
2020-05-26

共1个答案

一尘不染

childClass::customMethod()与相比具有不同的参数或不同的访问级别(公共/私有/受保护)parentClass::customMethod()

2020-05-26