<?php class Test{ public function __call($method, $parameters){ var_dump($method, $parameters); } } $test=new Test(); ...
確定! 回上一頁