drddx3115 2015-04-21 04:21
浏览 479
已采纳

php获取数组中特定索引的值

I have this problem. I want to echo the value of the specific index of an array. my code is this.

<?php
$str = 'test1:val1,test2:val2,test3:val3'
$ex1 = explode(',',$str);
foreach($ex1 as $val){
  $ex2 = explode(':',$val);
  foreach($ex2 as $val2){
    echo $val2.'<br>';
  }
}

//the output will be
/*
test1
val1
test2
val2
test3
val3
*/
?>

But I want the output to be only test1,test2,test3. Plss someone help me.

</div>
  • 写回答

2条回答 默认 最新

  • donglu4159 2015-04-21 04:27
    关注

    Just get the substring with substr & strpos. Try with -

    $str = 'test1:val1,test2:val2,test3:val3';
    $ex1 = explode(',',$str);
    
    foreach($ex1 as $val){
      $test = substr($val, 0, strpos($val, ':'));
      echo $test."<br>";
    }
    

    Or you can do this also -

    $str = 'test1:val1,test2:val2,test3:val3';
    $ex1 = explode(',',$str);
    foreach($ex1 as $val){
      $ex2 = explode(':',$val);
      echo $ex2[0]."<br>";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?