PHP code example of maer / events
1. Go to this page and download the library: Download maer/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/ */
maer / events example snippets
$event->addListener('start_something', 'some-id', function($name) {
echo "Coolest ever: {$name}";
});
$response = $event->emit('start_something', ['Chuck Norris']);
// Echoes: Coolest ever: Chuck Norris