array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'ds-sequence.rotate.php', 1 => 'Ds\\Sequence::rotate', 2 => 'Rotates the sequence by a given number of rotations', ), 'up' => array ( 0 => 'class.ds-sequence.php', 1 => 'Ds\\Sequence', ), 'prev' => array ( 0 => 'ds-sequence.reversed.php', 1 => 'Ds\\Sequence::reversed', ), 'next' => array ( 0 => 'ds-sequence.set.php', 1 => 'Ds\\Sequence::set', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/sequence/rotate.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Sequence::rotate

(PECL ds >= 1.0.0)

Ds\Sequence::rotateRotates the sequence by a given number of rotations

说明

abstract public Ds\Sequence::rotate(int $rotations): void

Rotates the sequence by a given number of rotations, which is equivalent to successively calling $sequence->push($sequence->shift()) if the number of rotations is positive, or $sequence->unshift($sequence->pop()) if negative.

参数

rotations

The number of times the sequence should be rotated.

返回值

没有返回值。. The sequence of the current instance will be rotated.

示例

示例 #1 Ds\Sequence::rotate() example

<?php
$sequence
= new \Ds\Vector(["a", "b", "c", "d"]);

$sequence->rotate(1); // "a" is shifted, then pushed.
print_r($sequence);

$sequence->rotate(2); // "b" and "c" are both shifted, the pushed.
print_r($sequence);
?>

以上示例的输出类似于:

(
    [0] => b
    [1] => c
    [2] => d
    [3] => a
)
Ds\Vector Object
(
    [0] => d
    [1] => a
    [2] => b
    [3] => c
)