fork download
  1. <?php
  2.  
  3. class Pituh {
  4. public function __callStatic($method, $args) {
  5. echo "Called $method with: " . implode(', ', $args);
  6. }
  7. }
  8.  
  9. $f = ["Pituh", "kud-kudah"];
  10. $f("koko", "kukareku");
Success #stdin #stdout #stderr 0.02s 24232KB
stdin
Standard input is empty
stdout
Called kud-kudah with: koko, kukareku
stderr
PHP Warning:  The magic method __callStatic() must have public visibility and be static in /home/WTYQVO/prog.php on line 4