给定以下两个索引数组:
$a = array('a','b','c'); $b = array('red','blue','green');
$result_i_want = array('a' => 'red','b' => 'blue','c' => 'green');
谢谢.