当用户可以添加无限的profile_ids
时,我有这个Api通话 $buffer = new BufferPHP('1/000000000000000000001');
$data = array('profile_ids' => array());
$data['profile_ids'][] = '111111111111111111111111';
$data['profile_ids'][] = '222222222222222222222222';
$data['profile_ids'][] = '333333333333333333333333';
// The text for your update
$data['text'] = $itemtitle;
$data['media'] = array('link' => $link,'picture' => $img) ;
$data['now']= true;
// Uncomment ONE of the lines below if you would like to attach a link or image to your update
//$data['media'] = array('link' => 'http://example.com/');
//$data['media'] = array('picture' => 'http://example.com/images/whiskers.png', 'thumbnail' => 'http://example.com/images/whiskers_thumb.png');
$ret = $buffer->post('updates/create', $data);
var_dump($ret);
}
此profile_ids存储在我的sql数据库
中id profile_id
1 11111111111111111111111111
2 22222222222222222222222222
3 33333333333333333333333333
如何在API调用中将无限制的sql profile_ids转换为数组?