SplFixedArray::next

(PHP 5 >= 5.3.0)

SplFixedArray::nextMove to next entry

Description

public void SplFixedArray::next ( void )

Move the iterator to the next array entry.

Parameters

This function has no parameters.

Return Values

No value is returned.

Коментарии

<?php

/**
* Example : rewind();
*/

$arr = new SplFixedArray(5);

$a $arr->key(); //Zero'th index
var_dump($a);
echo 
"<br>";

$arr->next(); // Shift to first index
$a $arr->key(); 
var_dump($a);
echo 
"<br>";

$arr->next(); // Shift to second index
$a $arr->key();
var_dump($a);
echo 
"<br>";

$arr->next();  // Shift to third index
$a $arr->key();
var_dump($a);
echo 
"<br>";
?>

The above example will output:

int(0) 
int(1) 
int(2) 
int(3)
2019-06-27 15:27:56
http://php5.kiev.ua/manual/ru/splfixedarray.next.html

    Поддержать сайт на родительском проекте КГБ