Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

PHP function for parsing about any English textual datetime description into a Unix timestamp

learn more… | top users | synonyms

0
votes
3answers
47 views

Filter based on days of the week in a PHP foreach

I am getting from Facebook Graph API the last 3 months page views information from all the accounts that I am admin with the following method: $since_date = date('Y-m-d', strtotime('-3 months')); ...
2
votes
3answers
3k views

Using FQL to retrieve only upcoming birthdays from Facebook API

Using the information on FQL and the user table from Facebook's Developer's docs, I've come up with the following code. //build fql string $fql = "SELECT name, birthday_date FROM user ...