Array Object
Posted: Thu Jan 31, 2013 4:31 am
Hi,
I'm trying to work with an array object, I want to make the data in each index uppercase, I can output the data to screen but how do I change values.
Thank you.
I'm trying to work with an array object, I want to make the data in each index uppercase, I can output the data to screen but how do I change values.
Code: Select all
foreach ($order->delivery as $key => $value) {
print "$key => $value\n";
}