reduce() reduce(callable $callback, mixed $initial = null) : mixed 通过使用用户自定义函数,以字符串返回数组 Parameters callable $callback mixed $initial Returns mixed
chunk() chunk(integer $size, boolean $preserveKeys = false) : static 把一个数组分割为新的数组块. Parameters integer $size boolean $preserveKeys Returns static
unshift() unshift(mixed $value, mixed $key = null) : void 在数组开头插入一个元素 Parameters mixed $value mixed $key
filter() filter(callable|null $callback = null) : static 用回调函数过滤数组中的元素 Parameters callable|null $callback Returns static
where() where(string $field, mixed $operator, mixed $value = null) : static 根据字段条件过滤数组中的元素 Parameters string $field 字段名 mixed $operator 操作符 mixed $value 数据 Returns static
column() column(string $column_key, string|null $index_key = null) : array 返回数组中指定的一列 Parameters string $column_key string|null $index_key Returns array
sort() sort(callable|null $callback = null) : static 对数组排序 Parameters callable|null $callback Returns static
slice() slice(integer $offset, integer $length = null, boolean $preserveKeys = false) : static 截取数组 Parameters integer $offset integer $length boolean $preserveKeys Returns static
toJson() toJson(integer $options = JSON_UNESCAPED_UNICODE) : string 转换当前数据集为JSON字符串 Parameters integer $options json参数 Returns string
hidden() hidden(array $hidden = array(), boolean $override = false) : $this 设置需要隐藏的输出属性 Parameters array $hidden 属性列表 boolean $override 是否覆盖 Returns $this
visible() visible(array $visible = array(), boolean $override = false) : $this 设置需要输出的属性 Parameters array $visible boolean $override 是否覆盖 Returns $this
append() append(array $append = array(), boolean $override = false) : $this 设置需要追加的输出属性 Parameters array $append 属性列表 boolean $override 是否覆盖 Returns $this
withAttr() withAttr(string|array $name, callable $callback = null) : $this 设置数据字段获取器 Parameters string|array $name 字段名 callable $callback 闭包获取器 Returns $this