-4

我有一个这种格式的数组

Array
(
 [0] => 96
 [1] => 97
 [2] => 98
 [3] => 99
 [4] => 100
)

我希望输出变成这样“96,97,98,99,100”而不使用 foreach。你知道我应该使用什么 php 函数吗?

- 更新 -

for($count = 0; $count < $total_test_name ; $count++)
{
 $test_name_array = $this->input->post('item_description',true);
 ref_value_array  = $this->input->post('reference_value',true);

 $data_item_array = array(
  'data_item_description'=> $test_name_array[$count],
  'data_item_reference'  => $ref_value_array[$count]
  );

 $this->db->insert('data_item',$data_item_array);
 //get the 'data_item_id'
 $data_item_id[] = $this->db->insert_id();
}

Console::log(implode(',', $data_item_id));
4

1 回答 1

1

有一个函数implode()会为你做这件事。像这样使用它:

$a = array ( 96, 97, 98, 99, 100,);
print implode(',', $a);
于 2013-08-09T06:22:03.680 回答