检查url是否包含某些单词然后显示

时间:2015-07-21 15:35:22

标签: php

我有以下网址结构。

 example.com/items/something_something.

什么是PHP代码来检查网址是否包含单词" items"然后显示某些div?

 <?php if () { ?> <!--Check if url contains the word "items"  -->
     Show this
 <?php } else { ?>
     Don't show this
 <?php } ?>

由于

1 个答案:

答案 0 :(得分:16)

if(strpos($_SERVER['REQUEST_URI'], 'items') !== false){