Код: Выделить всё
$array = array(
'mango',
'apple',
'orange',
'peach'
);
Код: Выделить всё
$options = (
'mango' => 'mango',
'apple' => 'apple',
'orange' => 'orange',
'peach' => 'peach'
);
Код: Выделить всё
foreach($array as $value){
$options[$value] = $value;
}
Подробнее здесь: https://stackoverflow.com/questions/690 ... ays-values