2010-12-12 51 views
1

我的Facebook應用程序發佈了一個故事給用戶牆上的HTTP POST:如何使用數組值在另一個數組

$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是一個數組。我想以一種整潔的方式輸出它的值,在每個值之後用逗號來表示,即......我該怎麼辦?

在此先感謝。

回答

2

試試這個:

implode(', ', array_values($post_rfs)); 
+0

這是偉大的,謝謝! – Ben 2010-12-12 09:45:59

相關問題