Re: foreach - Array



foreach ($array as $key=>$val)
{
$arrayOut[$key] = $some_random_string;
}

$array = $arrayOut;

that should work (not tested).

.