0

生成された出力から特定の値 (「名前」など) のみが必要です。このコード var_dump($request_object_details);を使用して、以下の出力を生成しました。

私が得ている出力:-

array(6) { ["id"]=> string(26) "514484461930096_1446926141"   ["application"]=> array(2) { ["name"]=> string(18) "Pocket Financetest" ["id"]=> string(15) "270339389736782" } ["to"]=> array(2) { ["name"]=> string(12) "Prince Singh" ["id"]=> string(10) "1446926141" } ["from"]=> array(2) { ["name"]=> string(14) "Ashutosh Singh" ["id"]=> string(15) "100003645579131" } ["message"]=> string(16) "My Great Request" ["created_time"]=> string(24) "2013-01-17T03:45:36+0000" } 

以下のコードを使用して、上記の出力を取得しました。

         <?php
        require_once('phps/fbsdk/src/facebook.php');
        $config = array
        (
          'appId' => '270339389736782',
          'secret' => '667e1795cc1f308f312d49d6b1c17cb8',
        );
        $facebook = new Facebook($config);
        //get the request ids from the query parameter
         $request_ids = explode(',', $_REQUEST['request_ids']);

         //build the full_request_id from request_id and user_id
          function build_full_request_id($request_id, $user_id) {
          return $request_id . '_' . $user_id;
         }  

         //for each request_id, build the full_request_id and delete request
     foreach ($request_ids as $request_id)
      {
         $uid = $facebook->getUser();

         $full_request_id = build_full_request_id($request_id, $uid); 
        $request_object_details = $facebook->api("/$full_request_id");
        var_dump($request_object_details);//This is giving me the output

        try {
         $delete_success = $facebook->api("/$full_request_id",'DELETE');
         if ($delete_success) {
            echo "Successfully deleted " . $full_request_id;}
         else {
           echo "Delete failed".$full_request_id;}
        }
        catch (FacebookApiException $e) {
        echo "error=".$e;}
        }
     ?>
4

1 に答える 1

0

あなたの質問は明確ではありませんが、それでも何らかのコードを投稿しています。

json_decodeを使用する

このようにします:オブジェクトを返します

$obj = json_decode($request_object_details);
$result= $obj->id;

また

json_decodeそれを使用して配列に変換できます。

$request_object_details = $facebook->api("/$full_request_id");
$result=json_decode($request_object_details, true);

2 番目のパラメーターは、デコードされた json 文字列を連想配列にします。

これで、次を直接使用できます。

echo $result['id'];
echo $result['application'];

等々...

それがあなたを助けることを願っています。

于 2013-01-17T06:50:48.840 に答える