|
Ds\Vector::rotateRotates the vector by a given number of rotations. Beschreibung
public void Ds\Vector::rotate
( int
$rotations
)
Rotates the vector by a given number of rotations, which is equivalent
to successively calling Parameter-Liste
RückgabewerteEs wird kein Wert zurückgegeben.. The vector of the current instance will be rotated. BeispieleBeispiel #1 Ds\Vector::rotate example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
(
[0] => b
[1] => c
[2] => d
[3] => a
)
Ds\Vector Object
(
[0] => d
[1] => a
[2] => b
[3] => c
)
|