You are here

public function SplFixedArray::rewind in Automatic Updates 7

Same name and namespace in other branches
  1. 8 vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php \SplFixedArray::rewind()

Rewind iterator back to the start @link https://php.net/manual/en/splfixedarray.rewind.php

@since 5.3.0

Return value

void

File

vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php, line 132

Class

SplFixedArray
The SplFixedArray class provides the main functionalities of array. The main differences between a SplFixedArray and a normal PHP array is that the SplFixedArray is of fixed length and allows only integers within the range as indexes. The advantage is…

Code

public function rewind() {
  reset($this->internalArray);
}