源代码:
"red","b"=>"green","c"=>"blue","d"=>"yellow"); $result=array_flip($a1); print_r($result); ?>
运行结果:
Array ( [red] => a [green] => b [blue] => c [yellow] => d )