object Instance query(
string
$query)
|
|
Send a FQL query
Senda a query to the Facebook API and returns the response in the form for a SimpleXmlElement.
<?php
require_once 'Services/Facebook.php';
$fql = 'SELECT *
FROM user
WHERE uid IN (123, 345, 567)';
$result =
$api->query($fql);
foreach ($result->user as $user) {
echo (string)$user->first_name;
}
?>
Parameters: