Skip to content

Instantly share code, notes, and snippets.

@mikemix
Last active 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/a05eb72b5372b9ea3b8242d29cfb7f39 to your computer and use it in GitHub Desktop.
Save mikemix/a05eb72b5372b9ea3b8242d29cfb7f39 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 $worker) {
$workerId = $worker['id'];
$workerName = $worker['name'];
// …
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment