PHP code example of vakata / events

1. Go to this page and download the library: Download vakata/events library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vakata / events example snippets

 php
// create a dispatcher
$dispatcher = new \vakata\events\Dispatcher();

// listen for various events and/or namespaces
$dispatcher->listen('eventName', function () { })
$dispatcher->listen('eventName.namespace', function () { });
$dispatcher->listen('*.namespace', function () { });
$dispatcher->listen('*', function (EventInterface $event) {
    $event->stopPropagation();
    var_dump(
        $event->getName(),
        $event->getNamespaces(),
        $event->getPayload(),
        $event->isPropagationStopped()
    );
});

// create an event
$event = new \vakata\events\Event("eventName", [ 'pay' => 'load' ]);

// dispatch the event (listeners are called immediately)
$dispatcher->dispatch($event);

// the event can also be dispatched in a lazy fashion (listeners are called after `run`)
$dispatcher->dispatch($event, true);
// dispatch lazy events
$dispatcher->run();