| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Go! - PHP的OOP&AOP框架

Go!是一个PHP 5.4库,基于OOP和AOP模式。它能够让开发者为每一个PHP应用程序添加AOP支持。需 PECL 扩展、Runkit、evals 或者 DI 容器支持。可使用 XDebug 轻松调试。

Go! - PHP的OOP&AOP框架
示例代码:

// Aspect/MonitorAspect.php    namespace Aspect;    use Go\Aop\Aspect;  use Go\Aop\Intercept\FieldAccess;  use Go\Aop\Intercept\MethodInvocation;  use Go\Lang\Annotation\After;  use Go\Lang\Annotation\Before;  use Go\Lang\Annotation\Around;  use Go\Lang\Annotation\Pointcut;    /**   * Monitor aspect   */  class MonitorAspect implements Aspect  {        /**       * Method that will be called before real method       *       * @param MethodInvocation $invocation Invocation       * @Before("execution(public Example->*(*))")       */      public function beforeMethodExecution(MethodInvocation $invocation)      {          $obj = $invocation->getThis();          echo 'Calling Before Interceptor for method: ',               is_object($obj) ? get_class($obj) : $obj,               $invocation->getMethod()->isStatic() ? '::' : '->',               $invocation->getMethod()->getName(),               '()',               ' with arguments: ',               json_encode($invocation->getArguments()),               "  \n";      }  }

项目主页:http://www.open-open.com/lib/view/home/1357808101527

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1357808101527.html
AOP PHP开发