(PECL pthreads >= 2.0.0)
Threaded::chunk — 操作
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) }