Skip to content

Instantly share code, notes, and snippets.

@Patrikgrinsvall
Last active March 20, 2022 20:34
Show Gist options
  • Save Patrikgrinsvall/0db1376831082b6824c34d0e5737bcc0 to your computer and use it in GitHub Desktop.
Save Patrikgrinsvall/0db1376831082b6824c34d0e5737bcc0 to your computer and use it in GitHub Desktop.
Code snippets of all ways to loop through something in php.

All PHP Loops

Array iterator

getIterator(); while( $array_iterator->valid() ) { echo $array_iterator->current() . "\n"; $array_iterator->next(); } ``` Out ``` yes no maybe ``` ## Array Walk `array_walk(array|object &$array, callable $callback, mixed $arg = null): bool` $value) statement ``` ## 4 for ``` for (expr1; expr2; expr3) { //Code to be executed } ``` ```

## 5. do while
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment