Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用して
print_r($_POST);
私はこのようなデータを取得しています
Array ( [selected_friends] => {"0":"699712136","1":"1622040878","2":"100002980112267"})
それを配列として使用して、次のような配列変数に入れる方法
$a[0] = 699712136; $a[1] = 1622040878;
等々。
あなたができる
$a = json_decode($_POST['selected_friends'], true);
JSONのように見えます。json_decode() を試す