通过php文档,我发现参数的语法令人困惑。例如,对于简单的array_push,文档说明了
int array_push ( array &$array [, mixed $... ] )
有人可以解释应该如何阅读吗?
答案 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")