fork download
  1. <?php
  2.  
  3. class A {
  4. public function B(string $t)
  5. {
  6. return $t;
  7. }
  8. }
  9.  
  10. $a = new A();
  11. echo $a->B('test');
Success #stdin #stdout 0.03s 25900KB
stdin
Standard input is empty
stdout
test