Skip to content

Instantly share code, notes, and snippets.

View DLzer's full-sized avatar
🛠️
Fixing stuff

DLzer DLzer

🛠️
Fixing stuff
View GitHub Profile
@DLzer
DLzer / prev-iteration.php
Last active April 29, 2020 16:48
PHP ArrayIteration Previous
<?php
$array = array('1' => 'one',
'2' => 'two',
'3' => 'three');
$arrayobject = new ArrayObject($array);
for($iterator = $arrayobject->getIterator();
$iterator->valid();