我如何使用strstr
来完全匹配变量的内容而不是仅仅包含?
例如:
www.example.com/greenapples
www.example.com/redapples
www.example.com/greenapplesandpears
如果我的 URL 设置为变量$myurl
并且我使用以下内容..
if (strstr($myurl, 'redapples')) {
echo 'This is red apples';
}
然后它也适用于其他 URL,因为它们也包含单词 apples。我怎么能具体?