<?php
     
    class Pituh {
        public function __callStatic($method, $args) {
            echo "Called $method with: " . implode(', ', $args);
        }
    }
     
    $f = ["Pituh", "kud-kudah"];
    $f("koko", "kukareku");