我的脚本如下:
<li><p class="navbar-text"><a href="/" <?php if (stripos($_SERVER['REQUEST_URI'],'/') !== false) {echo 'class="active"';} ?>>Forside</a></p></li>
<li><p class="navbar-text"><a href="/medlemmer" <?php if (stripos($_SERVER['REQUEST_URI'],'/medlemmer') !== false) {echo 'class="active"';} ?>>Medlemmer</a></p></li>
<li><p class="navbar-text"><a href="/butik">Ansøg</a></p></li>
<li><p class="navbar-text"><a href="/" style="color:white;">Køb</a></p></li>
我正在使用Bootstrap,我将此代码放在一个单独的文件中,我来自
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
$path .= "/header.php";
include_once($path);
?>
<?php if (stripos($_SERVER['REQUEST_URI'],'/') !== false) {echo 'class="active"';} ?>
让我烦恼。所有其他页面都按照他们应该的方式进行,但这个&#34; /&#34;斜杠只占用服务器上的每一页。
我可以做/索引,但在地址栏中看起来很糟糕。
如果只能在正面回复(index.php),我该怎么办?
答案 0 :(得分:2)
parse_url()
可以帮助您: -
<li><p class="navbar-text"><a href="/" <?php if (parse_url($_SERVER['REQUEST_URI'])['path'] =='/') {echo 'class="active"';} ?>>Forside</a></p></li>
<li><p class="navbar-text"><a href="/medlemmer" <?php if (parse_url($_SERVER['REQUEST_URI'])['path'] =='/medlemmer') {echo 'class="active"';} ?>>Medlemmer</a></p></li>
<li><p class="navbar-text"><a href="/butik">Ansøg</a></p></li>
<li><p class="navbar-text"><a href="/" style="color:white;">Køb</a></p></li>
一个例子: -
<?php
$url = "http://localhost/";
echo parse_url($url)['path'].'<br/>';
$url = "http://localhost/medlemmer";
echo parse_url($url)['path'];
?>
输出: - https://eval.in/556980