//build fql string
$fql = "SELECT name, birthday_date FROM user
WHERE uid IN
(SELECT uid2 FROM friend WHERE uid1 = me())
AND strlen(birthday_date) != 0 AND substr(birthday_date,0,3)
IN ( {$currentMonth}/ , {$nextMonth}/ )";
$fql.=$orderBy;
$fql.=" LIMIT " . $limit;
//query facebook
$params = array(
method => fql.query ,
query => $fql,
callback =>
);
$birthdays = $this->facebook_obj->api($params);
这是“工作”,但我要说,今天是11月29日,我有20位朋友,11月份有出生日,而<>条码条码>规定为10。 在此情况下,在11月29日前,10个出生日都很有可能返回。
我真的想做的是,从今天开始,本月和下个月,即将到来。 我怎么能改变这一 que,以实现这一目标?
感谢!
* <>。 Edit, see comment thread between Shawn and I for possible Alternative Solutions. 尚未接受任何答复,因为没有直接涉及原法典/问题。