<?php

$access_token = "00000000000000|xxxxxxxxxxxxxxxxxxxxxxx"
$graph_url = "https://g...content-available-to-author-only...k.com/martindalechristianfellowship/statuses?limit=10&access_token="
    . $access_token;
$page_posts = json_decode(file_get_contents($graph_url), true);

foreach($page_posts['data'] as $post){
    $message = $post['message'];
    $post_time = $post['updated_time'];
}