I need some help starting a function that will parse through an array, check for certain values, if those values exist, create a new array with those values and array_push them all together.
I'm passing through an array such as this:
Array
(
[0] => Array
(
[id] => 86
[34] => 695
[39] => 0
[40.1] => Yes
[36.1] => Yes
[35.4] => Card
[33.3] => Dekalb
[33.4] => Illinois
[33.5] => 60115
[33.6] => United States
[35.1] => 1143
[33.1] => 5555 Write Rd
[33.2] => Write School
[32.6] => John
[32.3] => Smith
[28] => jsmith@gmail.com
[27] => 5555556554
[25] => NIUSN
[14.3] => Jane
[14.6] => Doe
[11.2] => 695
[12] => 1
[11.1] => In-Person
[3] => 0
[2.2] => 595
[2.1] => Online
)
[1] => Array
(
...same stuff as before
)
I made a function parseArray to which I passed the above array. I go through every key/value combo and if a certain key exists, I set that to a variable. Then if all the right variables exist, I associate that to an array then push it to a final array (where all values will be held):
function parseArray($arry) {
$results = array();
$current_result = array();
foreach($arry as $a) {
foreach($a as $k => $v) {
if ( $k == '14.3' ) {
$attendee_first_name = $v;
}
if ( $k == '14.6' ) {
$attendee_last_name = $v;
}
if ( $attendee_first_name && $attendee_last_name ) {
$full_name = $attendee_first_name . ' ' . $attendee_last_name;
}
}
$current_result['attendee_name'] = $full_name;
}
array_push($results, $current_result);
return $results;
}
Now they way I have been doing it, has been very procedural and very clunky. I would love to get some insight on how to produce much cleaner/beautiful code for traversing an array and assigning value.
Ideally I would love something like this to result:
Array
(
[0] => Array
(
[attendees_name] = John Smith
[attendees_email] = jsmith@gmail.com
[purchasing_name] = Jane Doe
...etc
So I can simply pass the output through a foreach and output the desired information easily.