Home > php教程 > PHP源码 > body text

PHP 事件驱动程序

PHP中文网
Release: 2016-05-26 08:18:44
Original
1174 people have browsed it

1.class.Dispatcher.php

handle=$event_handle;
    }
     
    function handle_the_event(){
        $name="handler_$this->handle";
        if(class_exists("$name")){
            $handler_obj=new $name($this->handle);
            $response=$handler_obj->secure_handler();
            return $response;
        }else{
            echo "I can't handle this!";
        }
    }
}
?>

Secure,Event Driven Record Viewer!
handle_the_event(); } $_SESSION['name']="Wangzy"; if(isset($_POST['event'])) handle(); ?>
Copy after login

2.class.Handler_Event.php

handle=$event_handle;
    }
     
    function handled_event(){
        echo "The event, $this->handle, is now handled.
It is ,I promise!

Your records are as follows:

"; $id=parent::dbconn(); $result=mysql_query("select * from table01",$id); while($row=mysql_fetch_array($result)){ echo "Numbers:".$row['number']."\tName:".$row['name']."
"; } } function secure_handler(){ if($_SESSION['name']=="Wangzy"){ $this->handled_event(); }else{ echo "Sorry {$_SESSION['name']} you are not authorized!"; } } } //Edit Event class Handler_Edit extends Event_Handler{ private $handle; function __construct($event_handle){ $this->handle=$event_handle; } function handled_event(){ echo "This is event $this->handle, which is now handled -no kidding!
"; } function secure_handler(){ $this->handled_event(); } }
Copy after login
Related labels:
source: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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!