在一个.php
if(condition){
include("b.inc");
b_obj = new b();//this call is not made
b_obj->a();
}
在 b.inc
class b {
function b(){ //constructor
//stmts
}
function a(){
//stmts
}
}
我现在在 php 中有这段代码,尽管包含该文件,但没有从其他文件调用 b 类的构造函数?请帮助实现其他文件中构造函数的调用。