array_map()吧,你估计会舍弃它
$output = array();foreach ($array as $data) { $arr = explode('=',$data); $output[$arr[0]] = $arr[1];}