views:

19

answers:

1
abstract class A{
   abstract test();
   function __construct (){
       //check if test method exists on B//
   }
}

class B extends A{

}

new B();

my question is ... is there a way to check if the test method exists on class B? so I can avoid the fatal error ?

hope it makes sense.

A: 
method_exists(get_called_class(),'test');

the above has solved my problem :) hope it helps someone out there.

Val