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
.....。