new A;
class A {}
new C;
class C extends A {}
new B;
class B implements iB {}
interface iB {} // we can even put interface definition after the class
// that implements it
我希望这段代码可以正常工作,而我得到
PHP致命错误:在...中找不到类'B'
有人可以解释为什么会这样吗?这是记录在案的行为吗?
PS:php 5.3.2
PPS:ideone 上的相同行为:http: //ideone.com/q4cT6A