Get the App
SLTechnology News&Howtos  ›  Development  › 

How can PHP restrict access to pages only in Wechat's own browser?

Shulou Source: shulou.com Published: 2022-06-03 15:44:17 09月17日 Update

The content of this article mainly explains "PHP how to restrict page access to Wechat's own browser", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "how PHP restricts page access to Wechat's own browser".

In order to prevent their hard-working webapp from being copy, we all want to limit the program to browsing in Wechat, although the following realization of this function, a single piece of cake, not much technical content, understand the code under the forgery of the broken. The following is the code that PHP restricts the page to be accessed only in Wechat's own browser.

The copy code is as follows:

$useragent = $_ SERVER ['HTTP_USER_AGENT']

If (strpos ($useragent, 'MicroMessenger') = false) {

Echo "No access to non-Wechat browsers"

} else {

Echo "Wechat browser allows access"

}

If the above code is not perfect, Windows phone's Wechat will not work, so modify it:

The copy code is as follows:

$useragent = addslashes ($_ SERVER ['HTTP_USER_AGENT'])

If (strpos ($useragent, 'MicroMessenger') = false & & strpos ($useragent,' Windows Phone') = false) {

Echo "access to www.buyerinfo.biz is prohibited by non-Wechat browsers"

} else {

Echo "Wechat browser allows access to www.buyerinfo.biz"

}

You can judge by getting HTTP_USER_AGEN.

At this point, I believe that the "PHP how to achieve restrictions on page access can only be included in Wechat browser" have a deeper understanding, might as well to practical operation of it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Tags: Browsing browsing code restrictions pages content learning practical deeper nothing interest function can be passed content practicality practical cakes technology simple operation method Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno Docker Huawei Xiaomi Shulou Tech Info Shulou Technology