Skip to content

Instantly share code, notes, and snippets.

@nczz
Created October 1, 2016 08:55
Show Gist options
  • Save nczz/2b189f3b8caa50c874d868e9173b3b7b to your computer and use it in GitHub Desktop.
Save nczz/2b189f3b8caa50c874d868e9173b3b7b to your computer and use it in GitHub Desktop.
判斷Facebook 機器人
<?php
if (
strpos($_SERVER["HTTP_USER_AGENT"], "facebookexternalhit/") !== false ||
strpos($_SERVER["HTTP_USER_AGENT"], "Facebot") !== false
) {
echo "Facebook is coming!";
} else {
echo "Sad, You are not Facebook.";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment