fork(1) download
  1. <?php
  2.  
  3. // your code goes here
  4. class Auth {
  5. public function getLogin() {
  6. return 'bar';
  7. }
  8. }
  9.  
  10. $auth = new Auth();
  11.  
  12. echo 'bla-bla-bla' . $auth->getLogin() . 'bla-bla-bla';
  13.  
Success #stdin #stdout 0.02s 83136KB
stdin
Standard input is empty
stdout
bla-bla-blabarbla-bla-bla