<?PHP class A extends B {} class B implements C {} interface C {}
上面的代码抛出“致命错误:找不到类’B’”……
这是一个PHP bug吗?要么?
环境:“PHP 5.3.6-13ubuntu3.2与Suhosin-Patch(cli)(内置:2011年10月13日23:19:13)
版权所有(c)1997-2011 PHP小组
Zend Engine v2.3.0,版权所有(c)1998-2011 Zend Technologies
与Derde Rethans的Xdebug v2.1.0,版权所有(c)2002-2010
“
您特别关注类定义的顺序.只要接口在同一个文件中定义,就可以在任何地方声明 – 但必须先定义类才能扩展它们.
原文链接:https://www.f2er.com/php/138814.html以下是PHP中完全有效的顺序:
class B implements C { ... } class A extends B { ... } interface C { ... }
有a closed bug requesting clarification in the PHP5 docs.
对类似问题(Does the order of class definition matter in PHP?)的回答提到Autoloading.如果您使用多个文件,可能需要查看此问题.