How to check for certain values in url

◇◆丶佛笑我妖孽 提交于 2019-12-11 15:13:36

问题


Is it possible to check if the url contains certain values, for instance if the URL "www.example.com/dummy1/dummy2/dummy3/en/dummy4/tim/" has an "en" or not.


Thanks


回答1:


if (in_array('en', explode('/', $url))) { 
    ...
}



回答2:


The answers above may be what you're looking for, but in addition to searching for your value, here is how to actually retrieve the URL...

$url = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; //example.com/dummy1/dummy2/dummy3/en/dummy4/tim/
$url = $_SERVER['REQUEST_URI']; // /dummy1/dummy2/dummy3/en/dummy4/tim/

I'm assuming you want to know if a user is on a page that contains 'en' in which case you really don't need to check against the domain name, so you might do something like...

$contains_en = (strpos($_SERVER['REQUEST_URI'], 'en') !== false ? true : false);

you should note using strpos will also return true(actually it will return the match's start position in the string) if you have the character string en anywhere in the url, for example the word then would return true, so if you're looking for /en/ you can either use the in_array method described by other users to check, or simply check for the string '/en/' using this method




回答3:


You can use the strpos function which is used to find the occurrence of one string inside other:

LIKE THIS

$url = 'www.example.com/dummy1/dummy2/dummy3/en/dummy4/tim/';

if (strpos($url,'en') !== false) {
    echo 'true';
}


来源:https://stackoverflow.com/questions/17036271/how-to-check-for-certain-values-in-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!