php - 从url获取当前页面的名称并格式化字符串

时间:2012-09-13 19:37:15

标签: php string url url-rewriting str-replace

我有以下代码:(1)从url(2)获取页面/节名称清理字符串,然后将其分配给变量。

我想知道是否有任何关于如何提高此代码以提高效率的建议,可能更少if / else语句。

此外,任何建议我如何编码,以便它在url结构中占x个子目录。现在我以漂亮的手动方式检查3。

我希望它可以处理任何网址,例如:www.domain.com/level1/level2/level3/level4/levelx /...

这是我目前的代码:

<?php

    $prefixName = 'www : ';
    $getPageName = explode("/", $_SERVER['PHP_SELF']);
    $cleanUpArray = array("-", ".php");

    for($i = 0; $i < sizeof($getPageName); $i++) {
        if ($getPageName[1] == 'index.php')
        {
            $pageName = $prefixName . 'homepage';
        }
        else
        {
            if ($getPageName[1] != 'index.php')
            {                   
                $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', $getPageName[1]));
            } 
            if (isset($getPageName[2]))
            {
                if ( $getPageName[2] == 'index.php' )
                {
                    $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', $getPageName[1]));
                }               
                else
                {
                    $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', $getPageName[2]));
                }
            }
            if (isset($getPageName[3]) )
            { 
                if ( $getPageName[3] == 'index.php' )
                {
                    $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', $getPageName[2]));
                }               
                else
                {
                    $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', $getPageName[3]));
                }
            }   
        }           
    }
?>

2 个答案:

答案 0 :(得分:0)

您当前正在使用for - 循环,但没有使用$i迭代器进行任何操作 - 所以对我来说,您可以完全放弃循环。根据我的看法,您只需要将文件之前的目录名称设为$pageName,如果没有先前的目录,则将其设置为homepage

您可以将$_SERVER['PHP_SELF']传递给basename()以获取确切的文件名,而不是检查索引,也可以在/上拆分,因为您正在进行此操作以获取“最后一个目录“。要获取最后一个目录,您可以跳过索引并直接使用array_pop()

<?php

$prefixName = 'www : ';
$cleanUpArray = array("-", ".php");

$script = basename($_SERVER['PHP_SELF']);
$exploded = explode('/', substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], '/')));
$count = count($exploded);

if (($count == 1) && ($script == 'index.php')) {
    // the current page is "/index.php"
    $pageName = $prefixName . 'homepage';
} else if ($count > 1) {
    // we are in a sub-directory; use the last directory as the current page
    $pageName = $prefixName . trim(str_replace($cleanUpArray, ' ', array_pop($exploded)));
} else {
    // there is no sub-directory and the script is not index.php?
}

?>

如果您想要更多 breadcumbs -feel,您可能希望保留每个目录。如果是这种情况,您可以将中间if else条件更新为:

} else if ($count > 1) {
    // we are in a sub-directory; "breadcrumb" them all together
    $pageName = '';
    $separator = ' : ';
    foreach ($exploded as $page) {
        if ($page == '') continue;
        $pageName .= (($pageName != '') ? $separator : '') . trim(str_replace($cleanUpArray, ' ', $page));
    }
    $pageName = $prefixName . $pageName;
} else {

答案 1 :(得分:0)

我发现此代码非常有用

$protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') === 
FALSE ? 'http' : 'https';            // Get protocol HTTP/HTTPS

$host     = $_SERVER['HTTP_HOST'];   // Get  www.domain.com

$script   = $_SERVER['SCRIPT_NAME']; // Get folder/file.php

$params   = $_SERVER['QUERY_STRING'];// Get Parameters occupation=odesk&name=ashik

$currentUrl = $protocol . '://' . $host . $script . '?' . $params; // Adding all

echo $currentUrl;