(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) }