Skip to content

Instantly share code, notes, and snippets.

@iget-esoares
Last active September 26, 2018 20:47
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 iget-esoares/3b4786ed5d44e9c59ea76bc4fd0e9678 to your computer and use it in GitHub Desktop.
Save iget-esoares/3b4786ed5d44e9c59ea76bc4fd0e9678 to your computer and use it in GitHub Desktop.
<?php
function splitMyName(string $name) {
return explode(' ', $name);
}
function extractNameFromData(array $data) {
return splitMyName($data['role']);
}
$data = [
'id' => 110690,
'name' => 'Elias Soares',
'role' => null
];
$name = extractNameFromData($data);
echo $name[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment