我有以下网址结构。
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 } ?>
由于
答案 0 :(得分:16)
if(strpos($_SERVER['REQUEST_URI'], 'items') !== false){