Skip to content

Instantly share code, notes, and snippets.

@mikemix
Created August 9, 2022 19:25
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 mikemix/e399849c433f6c85707b00d0fe46f2f0 to your computer and use it in GitHub Desktop.
Save mikemix/e399849c433f6c85707b00d0fe46f2f0 to your computer and use it in GitHub Desktop.
<?php
$workers = [
['id' => 1, 'name' => 'John Doe'],
['id' => 3, 'name' => 'Jane Doe'],
['id' => 4, 'name' => 'Monica Trullo'],
['id' => 5, 'name' => 'Jonathan Bank'],
];
foreach ($workers as ['id' => $workerId, 'name' => $workerName]) {
// …
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment