the array:
('abc', 'def', 'xyz')
foreach($arr as $item)
// change $item here
Can I do this without creating a intermediate array?
the array:
('abc', 'def', 'xyz')
foreach($arr as $item)
// change $item here
Can I do this without creating a intermediate array?