我必須為網(wǎng)站的每個(gè)頁(yè)面生成面包屑,因?yàn)?url 有點(diǎn)復(fù)雜。這是我的網(wǎng)址http://1.1.1.1/Company/?route=enterprise/projects/manage&id=52rw9649ffwerwd3d9018154§ion=newpanel現(xiàn)在我必須從“route=”之后的 url 獲取“enterprise/projects/manage”,并生成每條路由的面包屑。下面是我正在使用的 PHP 代碼,它只創(chuàng)建像“主頁(yè)>>公司”這樣的面包屑,而我需要像“企業(yè)>>項(xiàng)目>>管理”這樣的面包屑。 // This function will take $_SERVER['REQUEST_URI'] and build a breadcrumb based on the user's current path function breadcrumbs($separator = ' » ', $home = 'Home') { // This gets the REQUEST_URI (/path/to/file.php), splits the string (using '/') into an array, and then filters out any empty values $path = array_filter(explode('/', parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH))); // This will build our "base URL" ... Also accounts for HTTPS :) $base = ($_SERVER['HTTPS'] ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . '/'; // Initialize a temporary array with our breadcrumbs. (starting with our home page, which I'm assuming will be the base URL) $breadcrumbs = Array("<a href=\"$base\">$home</a>"); // Find out the index for the last value in our path array $last = end(array_keys($path)); // Build the rest of the breadcrumbs foreach ($path AS $x => $crumb) { // Our "title" is the text that will be displayed (strip out .php and turn '_' into a space) $title = ucwords(str_replace(Array('.php', '_'), Array('', ' '), $crumb)); // If we are not on the last index, then display an <a> tag if ($x != $last) $breadcrumbs[] = "<a href=\"$base$crumb\">$title</a>"; // Otherwise, just display the title (minus) else $breadcrumbs[] = $title; } // Build our temporary array (pieces of bread) into one big string :) return implode($separator, $breadcrumbs); //return parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH); } ?> `
如何制作 URL 特定部分的面包屑
尚方寶劍之說(shuō)
2021-06-17 18:01:51