FB doesn't provide any api for searching a specific user's friends, but it's easy to do it by yourself. I recommend you use facebook-php-sdk.
1.
require 'facebook-php-sdk/src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'YOUR_APP_ID',
'secret' => 'YOUR_APP_SECRET',
));
$user = $facebook->getUser();
if ($user) {
$friends = $facebook->api('/me/friends');
// DO SOMETHING ELSE
}
from now on, $friends is a list of user's friend. it equals accessing https://graph.facebook.com/me/friends?access_token=USER_TOKEN manually.
2.
suppose $target is a string from your search field
foreach ($friends["data"] as $value) {
if (strpos($value["name"], $target) !== false) {
// DO SOMETHING YOU WANT TO
}
}
By the way, using javascript to search friend on client side may be more efficient and dynamical than using php. Personally, I would do it in the front end. Suppose you are using jQuery, and target is a string from your search field.
var url = 'https://graph.facebook.com/me/friends?access_token=USER_TOKEN'
$.getJSON(url, function(data) {
friends = data['data'];
for(i in friends){
if (friends[i]['name'].search(target) != -1){
// DO SOMETHING YOU WANT TO
}
}
});