Created
October 1, 2016 08:55
-
-
Save nczz/2b189f3b8caa50c874d868e9173b3b7b to your computer and use it in GitHub Desktop.
判斷Facebook 機器人
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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