<?php function testFunction() { echo "Number of arguments : " .func_num_args(); } testFunction(1, 2, 3); ?> It outputs Number of arguments : 3.
確定! 回上一頁