SplQueue::dequeue

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SplQueue::dequeue从队列中取出一个节点

描述

public SplQueue::dequeue(): 混合类型

从队列顶部取出 value

注意:

SplQueue::dequeue()SplDoublyLinkedList::shift() 的别名。

参数

此函数没有参数。

返回值

取出的节点的值。

添加注释

用户贡献的注释 4 个注释

xuecan at gmail dot com
14 年前
如果队列为空,dequeue() 会抛出一个带有消息 'Can't shift from an empty datastructure' 的 'RuntimeException'。
mark at bull-roarer dot com
11 年前
我只是觉得这是一种有趣且有趣的方式来排列方法调用,然后逐个调用它们。它可能有用作事务性执行类的基础或其他东西。

<?php
$q
= new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_DELETE);

$q->enqueue(array("FooBar", "foo"));
$q->enqueue(array("FooBar", "bar"));
$q->enqueue(array("FooBar", "msg", "Hi there!"));

foreach (
$q as $task) {
if (
count($task) > 2) {
list(
$class, $method, $args) = $task;
$class::$method($args);
} else {
list(
$class, $method) = $task;
$class::$method();
}
}

class
FooBar {
public static function
foo() {
echo
"FooBar::foo() called.\n";
}
public static function
bar() {
echo
"FooBar::bar() called.\n";
}
public static function
msg($msg) {
echo
"$msg\n";
}
}
?>

结果
FooBar::foo() called.
FooBar::bar() called.
Hi there!
andresdzphp at php dot net
12 年前
<?php
$q
= new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_DELETE);
$q->enqueue('item 1');
$q->enqueue('item 2');
$q->enqueue('item 3');

$q->dequeue();
$q->dequeue();

foreach (
$q as $item) {
echo
$item;
}

//Result: item 3

$q->dequeue(); //Fatal error: Uncaught exception 'RuntimeException'
//with message 'Can't shift from an empty datastructure'
?>
mark at bull-roarer dot com
11 年前
我只是觉得这是一种有趣且有趣的方式来排列方法调用,然后逐个调用它们。它可能有用作事务性执行类的基础或其他东西。

<?php
$q
= new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_DELETE);

$q->enqueue(array("FooBar", "foo"));
$q->enqueue(array("FooBar", "bar"));
$q->enqueue(array("FooBar", "msg", "Hi there!"));

foreach (
$q as $task) {
if (
count($task) > 2) {
list(
$class, $method, $args) = $task;
$class::$method($args);
} else {
list(
$class, $method) = $task;
$class::$method();
}
}

class
FooBar {
public static function
foo() {
echo
"FooBar::foo() called.\n";
}
public static function
bar() {
echo
"FooBar::bar() called.\n";
}
public static function
msg($msg) {
echo
"$msg\n";
}
}
?>

结果
FooBar::foo() called.
FooBar::bar() called.
Hi there!
To Top