Explode()函数将字符串分解为2个后续数组php

时间:2015-06-03 22:07:57

标签: php string-formatting

我正在尝试以格式

分割下面的$ param变量
listofitems//listofitems//listofitems...

其中每个项目的格式为

event,event,event,event...

传递给我的checkuseritems函数的单个事件(数字)。目前我只获得了第一个listofitems(1,4,9,7,5,8),然后是149758的echo函数。为什么忽略其他两个列表?

   $param= "1,4,9,7,5,8//5,8,9,6,4,2//8";
   $item = explode("//",$param);
   $allitemslength = count($item);
   $alluseritems["list"] = array();
for ($x = 0; $x < $allitemslength; $x++) {
    echo($item[$x]);


   $id = explode(",",$item[$x]);
   $arrlength = count($id);



    $response["item"] = array();


   for($x = 0; $x < $arrlength; $x++) {

 echo ($id[$x]);

  //  $result= $db->checkuseritems($id[$x]);
}
}

0 个答案:

没有答案