假设我在抽象类方法中使用get_class($this)
获得了类名。
我怎样才能获得定义此类的文件名? (完整路径)
我知道我可以将它作为参数传递给我的子类并创建一个可以在父类中访问的属性,但我想知道PHP是否有内置的东西
答案 0 :(得分:5)
您需要的是ReflectionObject
类及其方法ReflectionClass::getFileName
。
$reflection_class = new ReflectionClass(get_class($this));
echo $reflection_class->getFileName();
检查功能手册here。