fork(1) download
  1. <?php
  2. class Statics {
  3.  
  4. private static $keyword;
  5.  
  6. public static function __callStatic($name,$args){
  7. self::$keyword = "google";
  8. }
  9. public static function TellMe(){
  10. return self::$keyword;
  11. }
  12. }
  13.  
  14. echo Statics::TellMe();
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Standard output is empty