Using the old REST API, you could do call https://api.facebook.com/method/pages.isAdmin to know if a user was the admin of a given page.
https://api.facebook.com/method/pages.isAdmin
How can you do
You can try this:
$page=$facebook->api('/[PAGE ID]?fields=access_token'); if (!$page['access_token']) echo "is not admin";