| Replacing Values in Array
|
ahmed24

msg:4255664 | 12:52 pm on Jan 20, 2011 (gmt 0) | I have an array called $names that outputs like this:
Array ( [1] => Array ( [FULL_NAME] => Second, First [LAST_NAME] => Second [FIRST_NAME] => First
)
[2] => Array ( [FULL_NAME] => Two, One [LAST_NAME] => Two [FIRST_NAME] => One
) )
The sub-arrays in the example are just 2 but there can be many more. Can anyone tell me how I can replace the value of all the FULL_NAME to display FIRST_NAME followed by LAST_NAME without a comma? Any suggestions would be great thanks
|
omoutop

msg:4255722 | 3:10 pm on Jan 20, 2011 (gmt 0) | are you talking about something like this?
$names[0]['FULL_NAME'] = $names[1]['FIRST_NAME'].' '.$names[0]['LAST_NAME']
You can easily loop in an array using something like:
foreach ($names as $custNames) { $custNames['FULL_NAME'] = $custNames['FIRST_NAME'].' '.$custNames['LAST_NAME']; }
|
Shingetsu

msg:4255838 | 6:31 pm on Jan 20, 2011 (gmt 0) | I'd say more like this...
$i = 1; while(isset($mynames[$i])) $mynames[$i]['FULL_NAME'] = $mynames[$i]['FIRST_NAME'] . $mynames[$i]['LAST_NAME']; $i++; break;
|
|
|