Ds \ Vector::rotate()函数是PHP中的一个内置函数,用于将数组元素旋转给定的旋转次数。旋转也就地发生。
用法:
void public Ds\Vector::rotate( $rotations )
参数:该函数接受单个参数$rotations,该参数保存转数。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的Ds \ Vector::rotate()函数:
程序1:
<?php
// Create new Vector
$vect = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("Original Vector\n");
// Display the Vector elements
print_r($vect);
// Use rotate() function to rotate
// the vector elements
$vect->rotate(3);
echo("\nVector after rotating by 3 places\n");
// Display the Vector elements
print_r($vect);
?>
输出:
Original Vector Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) Vector after rotating by 3 places Ds\Vector Object ( [0] => 4 [1] => 5 [2] => 1 [3] => 2 [4] => 3 )
程序2:当旋转数大于向量中的元素数时。
<?php
// Create new Vector
$vect = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("Original Vector\n");
// Display the Vector elements
print_r($vect);
// Use rotate() function to rotate
// the vector elements
$vect->rotate(6);
echo("\nVector after rotating by 6 places\n");
// Display the Vector elements
print_r($vect);
?>
输出:
Original Vector Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) Vector after rotating by 6 places Ds\Vector Object ( [0] => 2 [1] => 3 [2] => 4 [3] => 5 [4] => 1 )
参考: http://php.net/manual/en/ds-vector.rotate.php
相关用法
- p5.js rotate()用法及代码示例
- CSS hue-rotate()用法及代码示例
- CSS rotate()用法及代码示例
- PHP ImagickDraw rotate()用法及代码示例
- Node.js GM rotate()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP Ds\Deque rotate()用法及代码示例
- PHP Ds\Sequence rotate()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | Ds\Vector rotate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。