关于数组

WBOY
WBOYOriginal
2016-06-23 13:13:511020browse

function getParams()
{
   $url = '/index.php?_p=index&_a=show&x=12&y=23&y=10';
  
   $refer_url = parse_url($url);
  
   $params = $refer_url['query'];
  
   $arr = array();
   if(!empty($params))
   {
       $paramsArr = explode('&',$params);
  
       foreach($paramsArr as $k=>$v)
       {
          $a = explode('=',$v);
          $arr[$a[0]] = $a[1];
       }
   }
   return $arr;
}

$arr = getParams();
print_r($arr);
得到的结果为
Array ( [_p] => index [_a] => show [x] => 12 [y] => 10 ) 

如何得到这样的结果

Array ( [_p] => index [_a] => show [x] => 12 [y] => 23 [y] => 10 ) 

因为我想在SQL执行   (id=23 or  id=10)


回复讨论(解决方案)

可能吗?
你手写一个看看

两个键值拥有相同的键名?

可能吗?
你手写一个看看



我解决了,我是这样写,当加入数组时,先查询里面有没有存在键名,如果有,就执行y=>23,10
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn