我想使用Facebook图形API获取用户DOB信息。我得到了完整的dob,但我只需要日和月
$graph_url ="https://graph.facebook.com/me?fields=id,first_name,name,gender,location,birthday&access_token=" . $accessToken;
$user = json_decode(get_html($graph_url));
echo $user->birthday
输出为MM/DD/YYYY
任何方式只能获得月和日。
感谢。
答案 0 :(得分:0)
正如你所说,你想要从你的生日那里得到像8/5
这样的数字。所以你必须做的只是: -
echo date('m/d',strtotime( $user->birthday));
检查日期格式: -