我正在学习PHP http://php.net/manual/en/migration70.new-features.php,在下面的示例中,我不理解函数定义中#define ABC "abc"
#define DEF "def"
let res = match x with
| ABC -> 1
| DEF as x -> something_else x
参数前面的...
。
$ints
有人可以告诉我点的用途是什么吗?
感谢。
答案 0 :(得分:2)
这意味着当你调用该函数时,你可以传递X个整数,函数将处理它们,无论它们有多少。如果您致电sumOfInts(3,4,6,2,9)
或sumOfInts(3,2,9)
,无论您通过多少参数,该功能都可以使用