标签: php reflection
我的课程如下:
class Foo { function a() { $this->b(); } function b() { } }
我如何动态地知道a()正在调用哪些函数?
a()
有一种方法可以知道a()会拨打b()吗?
b()