在PHP 中,函数的返回值可以是任意类型的数据。 ... <?php; function small_numbers(){; return array(0, 1, 2);; }; list($zero, $one, $two) = small_numbers(); ...
確定! 回上一頁