标签: php
有人可以在下面的表达式[]中解释一下[$field][]运算符的用途是什么:
[]
[$field][]
// Field rules protected $_rules = array(); // Store the rule and params for this rule $this->_rules[$field][] = array($rule, $params);
答案 0 :(得分:4)
它将为该数组创建一个新的(编号)索引。
它基本上是array_push()所做的。 (除了array_push不会返回一个新的Array-object)
array_push()
array_push