public function SplFixedArray::current in Automatic Updates 7
Same name and namespace in other branches
- 8 vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php \SplFixedArray::current()
Return current array entry @link https://php.net/manual/en/splfixedarray.current.php
@since 5.3.0
Return value
mixed The current element value.
File
- vendor/
paragonie/ sodium_compat/ src/ PHP52/ SplFixedArray.php, line 143
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 current() {
return current($this->internalArray);
}