如果URL包含确切的URL,如何设置标题,之后什么也没有?

时间:2018-02-01 21:58:54

标签: php

我目前正在使用:

 if (strpos($_SERVER['REQUEST_URI'], "/administrator/index.php?option=com_ohanah&view=event") !== false){
            $this->getCommand('title')->title = $translator->translate('test');
        }

但是这会为所有网址设置title,即使它包含&view=event之后的内容。我怎么能只在准确的URL上做到这一点?

1 个答案:

答案 0 :(得分:-2)

解决方案是使用正确的PHP比较运算符。 有关这方面的更多信息,请点击此处 http://php.net/manual/en/language.operators.comparison.php

 if (strpos($_SERVER['REQUEST_URI'], "/administrator/index.php?option=com_ohanah&view=event") == false){
            $this->getCommand('title')->title = $translator->translate('test');
        }