我如何在数组中转换$ _POST?

时间:2012-04-11 11:12:59

标签: php post

使用

print_r($_POST);

我收到类似这样的数据

Array ( [selected_friends] => {"0":"699712136","1":"1622040878","2":"100002980112267"})

我如何将它用作数组并将其放入数组变量中 喜欢

$a[0] = 699712136;
$a[1] = 1622040878;

等等。

2 个答案:

答案 0 :(得分:6)

你可以做到

$a = json_decode($_POST['selected_friends'], true);

答案 1 :(得分:1)

它看起来像JSON。试试json_decode()