function sum(int ...$nums)
{
return array_sum($nums);
}
#try {
echo sum(...nums:1,2,3,5); //這句報錯,不知道那裡的問題。
} catch (\Throwable $th) {
# echo $th->getMessage();
}
#Parse error: syntax error, unexpected ':', expecting ')' in D:\phpstudy_pro\WWW\yhj.php on line 52
###########
你這個寫的是個啥 全是錯誤啊
...nums
這個是什麼東西