<?php class Human { function __call($fun, $args) { print_r([$fun, $args]); } } $human = new Human(); $human->test(1, 2, 'a', 'b'); ...
確定! 回上一頁