Threaded::chunk

(PECL pthreads >= 2.0.0)

Threaded::chunk操作

说明

public Threaded::chunk(int $size, bool $preserve): array

获取给定大小的对象属性表的块,可以选择保留键

参数

size

要获取的项目数量

preserve

保留成员的键,默认值为 false

返回值

对象属性表中的项目数组

示例

示例 #1 获取属性表的块

<?php
$safe
= new Threaded();

while (
count($safe) < 10) {
$safe[] = count($safe);
}

var_dump($safe->chunk(5));
?>

上面的示例将输出

array(5) {
  [0]=>
  int(0)
  [1]=>
  int(1)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(4)
}

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top