Skip to content

Instantly share code, notes, and snippets.

@ERPedersen
Last active October 18, 2019 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ERPedersen/72f59de9b068a8405b1bc2abe80a05cd to your computer and use it in GitHub Desktop.
Save ERPedersen/72f59de9b068a8405b1bc2abe80a05cd to your computer and use it in GitHub Desktop.
Nullable foreach loop in PHP
<?php
// Initialize variable to null
$empty = null;
foreach ($empty ?? [] as $item) {
// Line never executed
}
// No error encountered
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment