摘要:
要实现自定义认证适配器,只需要定义一个类,继承Zend_Auth_Adapter_Interface接口即可。在该类中需要为该类指定authenticate()方法,并返回一个Zend_Auth_Result对象。代码:<?phprequire_once 'Zend/Auth/Adapter/Interface.php';class MyAdapter implements Zend_Auth_Adapter_Interface{ protected $_username; protected $_password; public function __construct 阅读全文