1. Go to this page and download the library: Download attozk/evenement-plus 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/ */
attozk / evenement-plus example snippets
$emitter = new Evenement\EventEmitter();
$emitter->on('user.created', function (User $user) use ($logger) {
$logger->log(sprintf("User '%s' was created.", $user->getLogin()));
});
$emitter->emit('user.created', array($user));
$emitter = new Evenement\EventEmitterRegex();
$emitter->on(['request.www.domain.com', 'request.www.example.com'], function (Request $request) use ($httpd) {
$httpd->response(404, 'Not found.');
});
$emitter->on('request.www.domain.com', function (Request $request) use ($httpd) {
$httpd->response(404, 'Not found.');
});
$emitter->on('request.www.example.com', function (Request $request) use ($httpd) {
$httpd->response(404, 'Not found.');
});
$emitter->on(['request.www.domain.\w+', 'request.example.(com|pk)'], function (Request $request) use ($httpd) {
$httpd->response(404, 'Not found.');
});
$emitter->emit('user.created', array($user));
// or multiple evetns at once
$emitter->emit(['user.created', 'welcome'], array($user));
// or emit using regex patterns
$emitter->emit(['request.*.pk', 'request.*.domain.pk'], array($request));