0
<?php if (preg_match('/\/(contact|news)\//', $_SERVER['REQUEST_URI']) === 1): ?>
   <a href="/">link</a>
<?php endif; ?>

有没有办法我也可以指定单个页面,例如/index.html在正则表达式中指定文件夹php if

4

2 回答 2

1

像这样写:

<?php 
if (preg_match('/\/(contact\/|news\/|index\.html)/', $_SERVER['REQUEST_URI'])): 
?>

您可以定义任意数量的页面(注意最后一个/已被移动)。不过,这很快就会变得笨拙。

您可能还希望考虑使用preg_quote

<?php 
$startsWith = array(
    'contact/',
    'news/',
    'index.html'
);
foreach($startsWith as &$string) {
    $string = preg_quote($string);
}
if (preg_match('/\/(' . implode('|', $startsWith) . ')/', $_SERVER['REQUEST_URI'])): ?>

哪个,特别是如果不熟悉正则表达式语法,会使管理事情变得更容易一些。

于 2013-07-24T22:31:47.437 回答
0

试试下面的:

<?php if (preg_match('/\/(contact|news)\/index\.html/', $_SERVER['REQUEST_URI']) === 1): ?>
   <a href="/">link</a>
<?php endif; ?>

更新

根据您在下面的评论,这是应该工作的代码:

<?php
// you can add .* after index\.html you want to match index.html with get variables
echo preg_match('/\/(index\.html.*|contact\/.*|news\/.*)/','/index.html');
// or just make it strict to match only index.html
echo preg_match('/\/(index\.html|contact\/.*|news\/.*)/','/index.html');
echo '<br>';
echo preg_match('/\/(index\.html|contact\/.*|news\/.*)/','/contact/blablabla');
echo '<br>';
echo preg_match('/\/(index\.html|contact\/.*|news\/.*)/','/news/blablabla');

?>
于 2013-07-24T22:31:39.333 回答