我的Facebook应用程序通过http帖子向用户墙发布故事:
$args = array('access_token' => $ACCESS_TOKEN,
'message' => 'testing message',
'picture' => $appin_logo,
'link' => $appin_canvas_url,
'name' => $appin_name,
'caption' => $post_score,
'description' => $post_rfs,
);
$ch = curl_init(); $url = 'https://graph.facebook.com/me/feed'; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $args); $data = curl_exec($ch); curl_close($ch);
除了一件事之外,这一切都很好:$ post_rfs是一个数组。我想以一种简洁的方式输出它的值,每个值后面都有一个逗号,但我该怎么办?
提前致谢。
答案 0 :(得分:2)
试试这个:
implode(', ', array_values($post_rfs));