如何将字符串值xbox转换为array()?

时间:2017-03-16 08:19:51

标签: php arrays string codeigniter

例如:在我的$this->input->post('list_id') = 68,58,47,39

我想将其转换为array(68,58,47,39);

请帮帮我,谢谢。

4 个答案:

答案 0 :(得分:2)

您可以使用explode函数使用分隔符将数组分解为字符串。如果要将数组与“胶水”粘贴在一起,可以使用implode:)

<?php
$array = explode(',', $this->input->post('list_id'));

答案 1 :(得分:0)

<?php
explode(',', '68,58,47,39');

答案 2 :(得分:0)

你可以使用explode将字符串转换为带有特殊分隔符的数组,并使用这样的爆炸:

explode(',', $this->input->post('list_id'));

答案 3 :(得分:0)

使用此

$data = explode(',',$this->input->post('list_id'));