CakeFest 2025 Madrid: The Official CakePHP Conference

SplFixedArray::rewind

(PHP 5 >= 5.3.0, PHP 7)

SplFixedArray::rewindRewind iterator back to the start

Description

public SplFixedArray::rewind(): void

Rewinds the iterator to the beginning.

Parameters

This function has no parameters.

Return Values

No value is returned.

add a note

User Contributed Notes 1 note

up
0
kishor10d at gmail dot com
6 years ago
<?php

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

$arr = new SplFixedArray(5);

$arr[1] = 2;
$arr[4] = "foo";

$a = $arr->key();
var_dump($a);
echo
"<br>";

$arr->next();
$a = $arr->key();
var_dump($a);
echo
"<br>";

$arr->next();
$a = $arr->key();
var_dump($a);
echo
"<br>";

$arr->rewind();
$a = $arr->key();
var_dump($a);
echo
"<br>";
?>

The above example will output:

int(0)
int(1)
int(2)
int(0)
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant