Skip to content

Instantly share code, notes, and snippets.

@bolechen
Last active January 20, 2021 02:18
Show Gist options
  • Save bolechen/6c4ee78afccf55d09a225992647adafb to your computer and use it in GitHub Desktop.
Save bolechen/6c4ee78afccf55d09a225992647adafb to your computer and use it in GitHub Desktop.
<?php
function is_weixin() {
if ( strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false ) {
return true;
}
return false;
}
@bolechen
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment