fork download
  1. <?php
  2.  
  3. class Petooh
  4. {
  5. public $massiv = array('Kokoko', 'Koodkooduh', 'Kookarek');
  6. public function __invoke($i)
  7. {
  8. return $this->massiv[$i];
  9. }
  10. }
  11.  
  12. $a = new Petooh();
  13.  
  14. echo $a(2);
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
Kookarek