You are here

public function SplFixedArray::key in Automatic Updates 8

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

Return current array index

Return value

int The current array index.

File

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

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 key() {
  return key($this->internalArray);
}