Home php教程 PHP源码 仿AS3实现PHP 事件机制

仿AS3实现PHP 事件机制

May 25, 2016 pm 05:14 PM

仿AS3实现PHP 事件机制

<?php
/**
 * 事件异常
 *
 * @author        lonely
 * @create            2010-10-21
 * @version        0.1
 * @lastupdate     lonely
 * @package     Event
*/
class Exception_Event extends Exception {}
/**
 * 事件对象
 *
 * @author        lonely
 * @create            2010-10-21
 * @version        0.1
 * @lastupdate     lonely
 * @package     Event
*/
class Event extends stdClass{
    public $target=null;
    public $type=null;
    /**
     * 创建事件
     * @param string $type
     */
    public function __construct($type){
        $this->type=trim($type);
    }
    /**
     * 得到事件字符串
     */
    public function __toString(){
        return $this->type;
    }
}
/**
 * 事件派发
 *
 * @author        lonely
 * @create            2010-10-21
 * @version        0.1
 * @lastupdate     lonely
 * @package     Event
*/
class EventDispatcher{
    private $_callback_method;
    /**
     * 添加事件
     * @param Event $event
     * @param string $method
     * @param string||object $class
     * @return boolean true
     */
    public function attach(Event $event,$method,$class=null){
        $event->target=$this;
        $eventstr=$this->_create_event_str($event);
        if($this->has($event,$method,$class))
            return true;
        if($class!=null){
            $this->_check_method($class,$method);
            $this->_callback_method[$eventstr][]=$this->_create_listener_method($eventstr,$class,$method);
        }else{
            $this->_check_function($method);
            $this->_callback_method[$eventstr][]=$this->_create_listener_fn($eventstr,$method);
        }
        return true;
    }
    /**
     * 派发事件
     * @param Event $event
     * @param string $method
     * @param string||object $class
     * @return void
     */
    public function dispatch(Event $event){
        $eventstr=$this->_create_event_str($event);
        if($this->_check_callback($eventstr)){
            foreach ($this->_callback_method[$eventstr] as $v){
                if($v[&#39;object&#39;]){
                    if(is_object($v[&#39;class&#39;])){
                        $v[&#39;class&#39;]->$v[&#39;method&#39;]($event);
                    }else{
                        call_user_func(array($v[&#39;class&#39;], $v[&#39;method&#39;]),$event);
                    }
                }else{
                    $v[&#39;function&#39;]($event);
                }
            }
        }
    }
    /**
     * 删除事件
     * @param Event $event
     * @param string $method
     * @param string $class
     * @return boolean true
     */
    public function detact(Event $event,$method,$class=null){
        $eventstr=$this->_create_event_str($event);
        if(!$this->_check_callback($eventstr))
            return true;
        if(!$this->has($event,$method,$class))
            return true;
            if($class!=null){
            $this->_check_method($class,$method);
            foreach ($this->_callback_method[$eventstr] as $k=>$v) {
                if(($v==$this->_create_listener_method($eventstr,$class,$method))){
                    unset($this->_callback_method[$eventstr][$k]);
                    return true;
                }
            }
            return true;
        }else{
            $this->_check_function($method);
            foreach ($this->_callback_method[$eventstr] as $k=>$v) {
                if(($v==$this->_create_listener_fn($eventstr,$method))){
                    unset($this->_callback_method[$eventstr][$k]);
                    return true;
                }
            }
            return true;
        }
    }
    /**
     * 检测事件是否监听
     * @param Event $event
     * @param string $method
     * @param string $class
     * @return boolean 
     */
    public function has(Event $event,$method,$class=null){
        $eventstr=$this->_create_event_str($event);
        if(($class!=null)){
            $this->_check_method($class,$method);
            if($this->_check_callback($eventstr)){
                foreach($this->_callback_method[$eventstr] as $v){
                    if(is_object($v[&#39;class&#39;])){
                        $v_class=get_class($v[&#39;class&#39;]);
                    }else{
                        $v_class=$v[&#39;class&#39;];
                    }
                    if(is_object($class)){
                        $s_class=get_class($class);
                    }else{
                        $s_class=$class;
                    }
                    $temp_v=array(
                        "class"=>$v_class,
                        "method"=>$method,
                    );
                    $temp_s=array(
                        "class"=>$s_class,
                        "method"=>$method,
                    );
                    if($temp_v==$temp_s){
                        return true;
                    }
                }
            }
        }else{
            $this->_check_function($method);
            if($this->_check_callback($eventstr)){
                foreach($this->_callback_method[$eventstr] as $v){
                    if($method==$v[&#39;function&#39;]){
                        return true;
                    }
                }
            }
        }
        return false;
    }
    /**
     * 检测指定类是否存在指定方法
     * @param string $class
     * @param string $method
     * @exception Exception_Event 
     * @return void
     */
    private function _check_method($class,$method){
        if(!method_exists($class,$method)){
            throw new Exception_Event(get_class($class)." not exist ".$method." method",1);
        }
    }
    /**
     * 检测指定函数是否存在
     * @param string $function 
     * @return void
     */
    private function _check_function($function){
        if(!function_exists($function)){
            throw new Exception_Event($function." function not exist ",2);
        }
    }
    /**
     * 检测指定事件是否存在监听函数
     * @param string $eventstr
     * @return boolean 
     */
    private function _check_callback($eventstr){
        if(isset($this->_callback_method[$eventstr])
            &&is_array($this->_callback_method[$eventstr])
        ){
            return true;
        }
        return false;
    }
    /**
     * 创建监听函数数组
     * @param string $eventstr
     * @param string $function
     * @return array 
     */
    private function _create_listener_fn($eventstr,$function){
        return array(
            "object"=>false,
            "function"=>$function,
        );
    }
    /**
     * 创建监听类数组
     * @param string $eventstr
     * @param string $class
     * @param string $method
     * @return array 
     */
    private function _create_listener_method($eventstr,$class,$method){
        return array(
            "object"=>true,
            "class"=>$class,
            "method"=>$method,
        );
    }
    /**
     * 创建事件字符串
     * @param Event $event
     * @return string 
     */
    private function _create_event_str(Event $event){
        $classstr=strtolower(get_class($event));
        $eventstr=(string)$event;
        return $classstr.$eventstr;
    }
}
class test extends EventDispatcher{
    
}
function t($e){
    print_r($e->a);
}
$v=new test();
$e=new Event("test");
$v->attach($e,"t");
$v->detact($e,"t");
echo $v->has($e,"t");
$e->a="dd";
$v->dispatch($e);
Copy after login


以上就是仿AS3实现PHP 事件机制的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles