1

FacebookからJSON応答を受け取りました。$id&の値を取得する方法は$post_id

    $response = json_decode ( file_get_contents($graph_url) );
    $id = $response.id;
    $post_id = $response.post_id;    

        print_r( $response );   
        print_r( $id );
        print_r( $post_id );

出力:

stdClass Object ( [id] => 232160686920835 [post_id] => 231794566957447_232160693587501 )

$id&の出力なし$post_id .....。

4

2 に答える 2

4

オブジェクトの構文が間違っています。使用する:

$id = $response->id;
$post_id = $response->post_id;    

print_r( $response );   
print_r( $id );
print_r( $post_id );

または、配列を操作する場合はtrue、json_decodeの2番目の引数として次のように指定できます。

$response = json_decode ( file_get_contents($graph_url), true );
$id = $response['id'];
$post_id = $response['post_id'];    

print_r( $response );   
print_r( $id );
print_r( $post_id );
于 2013-02-17T17:42:10.833 に答える
0

PHPOOPで

->.Javaや他の言語のように代わりに使用されます。

于 2013-02-17T17:45:10.020 に答える