Skip to content

Instantly share code, notes, and snippets.

@reenl
reenl / performance.php
Created July 16, 2013 21:56
Performance on Evenement with indexed listeners.
<?php
require __DIR__.'/vendor/autoload.php';
$emit = new \Evenement\EventEmitter();
$start = microtime(true);
for ($i = 0; $i < 10000; $i++) {
$emit->on('event', function() use ($i) {
echo $i.PHP_EOL;
});
}