<?phpvar_dump(method_exists("Iterator", "current"));// bool(true)?> PHP method_exists note #6 If you want to check in a class itself if a method is known you may do so with magic variable __CLASS__<?phpclass A{ __construct($method){ return method_exists(__CLASS__,$method)...