可以
例如在 class A中调 class B的方法bb($str):
class A
{
   function aa($str)
   {
      B::bb($str);
   }
}
但是bb()里面不能有$this->,否则在A中只能 $obj = new B 了