如何阅读/理解PHP文档中的参数列表

时间:2018-08-21 22:03:08

标签: php documentation

通过php文档,我发现参数的语法令人困惑。例如,对于简单的array_push,文档说明了

int array_push ( array &$array [, mixed $... ] )

有人可以解释应该如何阅读吗?

1 个答案:

答案 0 :(得分:0)

Array_push将值推入数组末尾。

strings <- c("This is a phrase with a NameThis is another phrase",
         "This is a phrase with the number 2019This is another phrase")