1

如果在文本中找到某些单词/字符串,我想制作链接。我有一段来自 php.bet 的代码可以做到这一点,但它也从<a href="http://www.domain.com/index.php" title="Home">go to homepage</a>. 你能帮忙解决这个问题吗?

这是一段代码:

<?php

$str_in =   '<p>Hi there worm! You have a disease!</p><a href="http://www.domain.com/index.php" title="Home">go to homepage</a>';
$replaces=      array(
                'worm' => 'http://www.domain.com/index.php/worm.html',
                'disease' => 'http://www.domain.com/index.php/disease.html'
                );

function addLinks($str_in, $replaces)
{
  $str_out = '';
  $tok = strtok($str_in, '<>');
  $must_replace = (substr($str_in, 0, 1) !== '<');
  while ($tok !== false) {
    if ($must_replace) {
      foreach ($replaces as $tag => $href) {
        if (preg_match('/\b' . $tag . '\b/i', $tok)) {
          $tok = preg_replace(
                                '/\b(' . $tag . ')\b/i',
                                '<a title="' . $tag . '" href="' . $href . '">\1</a>',
                                $tok,
                                1);
          unset($replaces[$tag]);
        }
      }
    } else {
      $tok = "<$tok>";
    }
    $str_out .= $tok;
    $tok = strtok('<>');
    $must_replace = !$must_replace;
  }
  return $str_out;
}

echo addLinks($str_in, $replaces);

结果是:

嗨,蠕虫!你有病!

a href="http://www.domain.com/index.php" title="首页"/a

“蠕虫”和“疾病”这两个词被转换成想要的链接,但其余的......

非常感谢!

4

2 回答 2

1

这对函数应该可以满足您的需求,而不会出现使用 regexstr_replace.

function process($node, $replaceRules)
{
    if($node->hasChildNodes()) {
        $nodes = array();
        foreach ($node->childNodes as $childNode) {
            $nodes[] = $childNode;
        }
        foreach ($nodes as $childNode) {
            if ($childNode instanceof DOMText) {
                $text = preg_replace(
                    array_keys($replaceRules),
                    array_values($replaceRules),
                    $childNode->wholeText);
                $node->replaceChild(new DOMText($text),$childNode);
            }
            else {
                process($childNode, $replaceRules);
            }
        }
    }
}

function addLinks($str_in, $replaces)
{
    $replaceRules = array();    
    foreach($replaces as $k=>$v) {
        $k = '/\b(' . $k . ')\b/i';
        $v = '<a href="' . $v . '">$1</a>';
        $replaceRules[$k] = $v;
    }

    $doc = new DOMDocument;
    $doc->loadHTML($str_in);
    process($doc->documentElement, $replaceRules);
    return html_entity_decode($doc->saveHTML());
}

注意: 如果 HTML 结构不正确(如您的示例中所示),则无需担心;但是,输出将结构良好。

应得的信用:执行大部分实际工作 的递归process()函数直接来自 Lukáš Lalinský 对如何替换 HTML 中的文本的回答。该addLinks()功能只是为适合您的问题而量身定制的用例。

于 2011-09-15T22:16:22.097 回答
0

不知道为什么你有这么大的建筑,比如:

$str_out = preg_replace('/(' . preg_quote(implode('|', array_keys($replaces))) . ')/', $replaces[$1], $str_in);

会完成同样的事情。当然,使用正则表达式处理 HTML 是一个危险的过程。您应该使用带有一些 xpath 的 DOM 来更可靠地执行此操作。

于 2011-09-15T19:25:30.090 回答