Home  >  Article  >  PHP Framework  >  How to bind events in yii

How to bind events in yii

(*-*)浩
(*-*)浩Original
2019-11-06 09:32:193101browse

The event mechanism is divided into two types: scanning type and binding type. The binding type is mainly used in Yii, and the binding type involves two methods: trigger() and on()

How to bind events in yii

1. trigger() : The event is triggered by calling the yii\base\Component::trigger() method, which must pass the event name, you can also pass an event object to pass parameters to the event handler.               (Recommended learning: yii tutorial)

2. on(): Sometimes you want all instances of a class to respond to a triggered event rather than a specified instance For events, instead of attaching event handlers to each instance one by one, the handler is attached at the class level by calling the static method yii\base\Event::on().

Let’s take a look at a specific example: (Create a cat and a mouse. When the cat meows, the mouse is triggered to run away)

How to bind events in yii

How to bind events in yii

The above is the code in the cat.php class. Since the screenshots are incomplete, I will add two more. Let’s take a look at mouse.php

How to bind events in yii

How can we associate these two classes? Of course, we need to rely on the controller to call these two classes (because the cat class has already called the component class file, so there is no need to call it again when using run here)

How to bind events in yiiExtension:

How to bind events in yii##

The above is the detailed content of How to bind events in yii. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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