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