Created
August 9, 2022 19:25
-
-
Save mikemix/e399849c433f6c85707b00d0fe46f2f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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