这篇文章介绍的内容是关于php 数组函数 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
<?php $a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); $result=array_flip($a1); print_r($result); ?>
Array ( [red] => a [green] => b [blue] => c [yellow] => d )
相关推荐:
以上是php 数组函数 的详细内容。更多信息请关注PHP中文网其他相关文章!