How is the execution order of PHP event listeners defined?

WBOY
Release: 2024-04-17 15:21:01
Original
307 people have browsed it

The execution order of PHP event listeners is determined by both the priority and the registration order: Priority: Higher values indicate higher priority execution (range is -10 to 10). Registration order: Listeners with the same priority are executed in the order of registration.

PHP 事件监听器的执行顺序是如何定义的?

Execution sequence of PHP event listeners: explain in simple terms

Understanding the PHP event system

The event system in PHP uses event listeners to handle events. Listeners are registered by subscribing to specific event types. When the event is triggered, the system will execute the registered listener.

Execution order

The execution order of event listeners is determined by two factors:

  • Priority:Each listener is assigned a priority value, with a higher priority indicating higher execution priority.
  • Registration order:If multiple listeners have the same priority, they are executed in registration order.

Priority

The priority of the listener is set by thewithPriority()method, the priority value range is -10 to 10 , where:

  • -10: lowest priority
  • 10: highest priority

By default, the priority of the listener is 0.

Registration sequence

Listeners are added to the event dispatcher through theaddListener()orsubscribe()method. The order of registration is determined by the order in which these methods are called.

Practical case

The following code snippet demonstrates a practical case of the listener execution sequence:

use Symfony\Component\EventDispatcher\EventDispatcher; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\Event; class EventA extends Event {} class EventB extends Event {} class ListenerA implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ 'event_a' => ['onEventA', -5], 'event_b' => ['onEventB', 1], ]; } public function onEventA(EventA $event) { echo "Listener A: Event A\n"; } public function onEventB(EventB $event) { echo "Listener A: Event B\n"; } } class ListenerB implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ 'event_a' => ['onEventA', 5], 'event_b' => ['onEventB', -2], ]; } public function onEventA(EventA $event) { echo "Listener B: Event A\n"; } public function onEventB(EventB $event) { echo "Listener B: Event B\n"; } } $dispatcher = new EventDispatcher(); $dispatcher->addSubscriber(new ListenerA()); $dispatcher->addSubscriber(new ListenerB()); $dispatcher->dispatch(new EventA()); $dispatcher->dispatch(new EventB());
Copy after login

Output:

Listener A: Event A Listener B: Event A Listener A: Event B Listener B: Event B
Copy after login

In this example,ListenerBhas a higher priority forEventA, so it is executed beforeListenerA. ForEventB,ListenerAhas higher priority, so it is executed first.

The above is the detailed content of How is the execution order of PHP event listeners defined?. For more information, please follow other related articles on the PHP Chinese website!

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 admin@php.cn
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!