Threaded::shift
(PECL pthreads >= 2.0.0)
Threaded::shift — Manipulation
说明
public
Threaded::shift (
void ) :
boolean
弹出对象属性表中第一项数据
返回值
对象属性表中的第一项数据
范例
Example #1 弹出对象属性表中第一项数据
<?php
$safe = new Threaded();
while (count($safe) < 10)
$safe[] = count($safe);
var_dump($safe->shift());
?>
以上例程会输出:
int(0)