Create an assoc array with equal keys and values from a regular array

You can use the array_combine function, like so:

$numbers = array('first', 'second', 'third');
$result = array_combine($numbers, $numbers);

Leave a Comment