我有这个返回 json 对象的函数:
function getMyFbEvents() {
global $facebook;
try {
$fb_events = $facebook->api('/me/events/');
foreach ($fb_events["data"] as $fb_event_data) {
$event_info = json_decode(file_get_contents('https://graph.facebook.com/' . $fb_event_data['id'] . '/?access_token=' . $facebook->getAccessToken()));
return $event_info;
}
} catch (FacebookApiException $e) {
error_log($e);
$fb_events = null;
return null;
}
}
现在,如果我想通过调用相关函数从脚本的另一页调用该对象,我该怎么做?
我的意思是,如果我现在想循环$event_info
,就好像我在那个函数中一样并获取每个给定的数据,有没有办法?
也许听起来有点“太多”:)