我试图根据访问者的当前页面动态创建主菜单栏链接。
我从
开始 $path = $_SERVER['REQUEST_URI'];
当然,这会返回像
这样的内容我需要抓住第一个' /'之后的任何东西。我曾尝试搞乱爆炸,但我偶然发现了如何处理生成的数组。我也正试图写一个正则表达式 - 似乎是一个更优雅的解决方案。
然后我需要构建我的开关。有点像:
switch ($path)
{
case '/subfolder0':
$link = $root_url.'/subfolder0/anotherfolder/page.html';
break;
case '/subfolder1':
$link = $root_url.'/subfolder1/page.html';
break;
default:
$link = $root_url.'/subfolder2/page.html';
}
最后,我应该使用if ... elseif来代替开关吗?
谢谢你的时间,全部!
答案 0 :(得分:2)
在第一个/:
之后抓住所有内容strstr($_SERVER['REQUEST_URI'], '/');
或者,使用正则表达式:
preg_match('#(/.*)#', $_SERVER['REQUEST_URI'], $matches); // $matches[1] will be the path
就交换机而言,我会说如果/ elseif / else在你的情况下是最不优雅的,那么切换也不错,但我个人会选择一个关联数组:
$mapping = array('/subfolder0' => $root_url.'/subfolder0/anotherfolder/page.html', 'etc' => 'etc');
$link = $mapping($path);
这使您可以将映射保留在另一个组织文件中,并通过将配置与实现分离来使其更容易维护。
答案 1 :(得分:1)
如果你对URI的所有部分感兴趣,使用explode并不是一个坏主意,你应该看看documentation for explode
它的用法如下:
$exploded = explode('/','/path/to/page.html');
echo $exploded[0]; // Will print out '' (empty string)
echo $exploded[1]; // Will print out 'path'
echo $exploded[2]; // Will print out 'to'
echo $exploded[3]; // Will print out 'page.html'
但据我了解,您希望用第一个字符后面的内容替换链接(总是'/'),您可以像这样使用substr:
// Get whatever is after the first character and put it into $path
$path = substr($_SERVER['REQUEST_URI'], 1);
在您的情况下,不需要它,因为您可以预测字符串开头有反斜杠。
我还建议使用associative array替换网址。
我会像这样实现整个事情(根据需要删除第一个反斜杠):
// Define the URLs for replacement
$urls = array(
'subfolder0' => '/subfolder0/anotherfolder/page.html',
'subfolder1' => '/subfolder1/page.html'
);
// Get the request URI, trimming its first character (always '/')
$path = substr($_SERVER['REQUEST_URI'], 1);
// Set the link according to $urls associative array, or set
// the default URL if not found
$link = $urls[$path] or '/subfolder2/page.html';
或者爆炸,只占用URI的第一部分:
// Get the parts of the request
$requestParts = explode('/', $_SERVER['REQUEST_URI']);
// Set the link according to $urls associative array, or set
// the default URL if not found
$link = $urls[$requestParts[1]] or '/subfolder2/page.html';
答案 2 :(得分:1)
在分析了OP的问题之后,我认为他/她的意思是将其称为“第一个'/'后的所有内容,但是在第二个'/'之前。这就是我得到的内容:
你可以试试这个正则表达式:
<?php
/*
* Regex: /((\w+?|\w+\.\w+?)(?!^\/))(?=\/.*$|$)/
*/
$paths = array(
'/subfolder9/',
'/subfolder/page.html',
'/subfolder1/subfolder2/page.html',
'/page.html'
);
foreach ($paths as $path) {
preg_match("/((\w+?|\w+\.\w+?)(?!^\/))(?=\/.*$|$)/", $path, $matches);
debug($matches);
}
// $matches[1] will contain the first group ( ) matched in the expression.
// or "subfolder<#>" or "<page>.<ext>"
// The loop results is as follows:
Array
(
[0] => subfolder9
[1] => subfolder9
[2] => subfolder9
)
Array
(
[0] => subfolder
[1] => subfolder
[2] => subfolder
)
Array
(
[0] => subfolder1
[1] => subfolder1
[2] => subfolder1
)
Array
(
[0] => page.html
[1] => page.html
[2] => page.html
)
?>
注意:这仅适用于支持环视的正则表达式风格(零宽度正向和负向向前看是使用示例的。)
这是正则表达式的一个很好的备忘单,如果没有它,我就不会编码。
Regular-Expressions.info - (点击查看)
答案 3 :(得分:1)
您只需使用dirname功能即可获得所需内容:
$path = dirname('/subfolder/page.html'); // returns '/subfolder'
$path = dirname('/subfolder1/subfolder2/page.html'); // returns '/subfolder1'
$path = dirname('page.html'); // returns '.'
编辑:基于正则表达式的解决方案:
$path = preg_replace('#^(/[^/]*).*$#', '$1', '/subfolder/page.html' )