I\'m relearning PHP, so sorry for might be a basic question. I can\'t find an answer.
I have a multidimensional array, I need to replace the value for a specific ke
foreach($array as &$value) { $value['ad_type'] = 'new value'; }