HosipLan

Untitled

Sep 20th, 2011
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. class Foo extends Nette\Object
  4. {
  5.     public $onEvent = array();
  6. }
  7.  
  8. $foo = new Foo;
  9. $foo->onEvent[] = function($s) { echo $s . ' foo'; };
  10. $foo->onEvent[] = function($s) { echo $s . ' bar'; };
  11.  
  12. $foo->onEvent('hello');
Advertisement
Add Comment
Please, Sign In to add comment