本文介绍了检查当前网址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有网址:

http://site.com/movies/posters/ID.html
http://site.com/movies/posters/fixed/ID.html

我如何知道 /posters/fixed/ 是否存在于当前 url 中(在打开的页面上)?

How do I know if /posters/fixed/ is present in the current url (on opened page)?

喜欢:

if ("/posters/fixed/" present) {
    $match_fixed = true;
}

谢谢.

推荐答案

if(strpos($_SERVER['REQUEST_URI'],"/movies/posters/fixed/")===0){
    //true
}

这篇关于检查当前网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 13:45