fork(2) download
  1. <?php
  2. class std {
  3. public static function cout() {
  4. return new std();
  5. }
  6. public function endl() {
  7. echo PHP_EOL;
  8. }
  9. public function __get($name) {
  10. echo $name;
  11. return $this;
  12. }
  13. }
  14.  
  15. std::cout()->{'Кукареку!'}->endl();
  16.  
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
Кукареку!