2

我的原始 HTML 看起来像这样:

<h1>Page Title</h1>

<h2>Title of segment one</h2>
<img src="img.jpg" alt="An image of segment one" />
<p>Paragraph one of segment one</p>

<h2>Title of segment two</h2>
<p>Here is a list of blabla of segment two</p>
<ul>
  <li>List item of segment two</li>
  <li>Second list item of segment two</li>
</ul>

现在,使用 PHP(不是 jQuery),我想改变它,像这样:

<h1>Page Title</h1>

<div class="pane">
  <h2>Title of segment one</h2>
  <img src="img.jpg" alt="An image of segment one" />
  <p>Paragraph one of segment one</p>
</div>

<div class="pane">
   <h2>Title of segment two</h2>
   <p>Here is a list of blabla of segment two</p>
   <ul>
     <li>List item of segment two</li>
     <li>Second list item of segment two</li>
   </ul>
</div>

所以基本上,我希望在<h2></h2>标签集之间包装所有 HTML<div class="pane" />上面的 HTML 已经允许我用 jQuery 创建一个手风琴,这很好,但我想更进一步:

我希望为所有<h2></h2>受影响的集合创建一个 ul ,如下所示:

<ul class="tabs">
  <li><a href="#">Title of segment one</a></li>
  <li><a href="#">Title of segment two</a></li>
</ul>

请注意,我使用 jQuery 工具选项卡来实现该系统的 JavaScript 部分,并且它不需要 .tabs 的 href 指向其特定的 h2 对应项。

我的第一个猜测是使用正则表达式,但我也看到一些人在谈论DOM Document

在 jQuery 中这个问题存在两种解决方案,但我真的需要一个 PHP 等价物:

任何人都可以请实际帮助我吗?

4

3 回答 3

3

DOMDocument 可以帮助您。我之前回答过一个类似的问题:

使用正则表达式将图像包装在标签中

更新

完整的代码示例包括:

$d = new DOMDocument;
libxml_use_internal_errors(true);
$d->loadHTML($html);
libxml_clear_errors();

$segments = array(); $pane = null;

foreach ($d->getElementsByTagName('h2') as $h2) {
    // first collect all nodes
    $pane_nodes = array($h2);
    // iterate until another h2 or no more siblings
    for ($next = $h2->nextSibling; $next && $next->nodeName != 'h2'; $next = $next->nextSibling) {
        $pane_nodes[] = $next;
    }

    // create the wrapper node
    $pane = $d->createElement('div');
    $pane->setAttribute('class', 'pane');

    // replace the h2 with the new pane
    $h2->parentNode->replaceChild($pane, $h2);
    // and move all nodes into the newly created pane
    foreach ($pane_nodes as $node) {
        $pane->appendChild($node);
    }
    // keep title of the original h2
    $segments[] = $h2->nodeValue;
}

//  make sure we have segments (pane is the last inserted pane in the dom)
if ($segments && $pane) {
    $ul = $d->createElement('ul');
    foreach ($segments as $title) {
        $li = $d->createElement('li');

        $a = $d->createElement('a', $title);
        $a->setAttribute('href', '#');

        $li->appendChild($a);
        $ul->appendChild($li);
    }

    // add as sibling of last pane added
    $pane->parentNode->appendChild($ul);
}

echo $d->saveHTML();
于 2012-05-21T10:21:35.530 回答
2

使用 PHP DOM函数来执行此任务。

于 2012-05-21T10:20:22.350 回答
1

.. 一个不错的 PHP html 解析器是您所需要的。 这个不错。它是一个相当于 jquery 的 PHP。

于 2012-05-21T10:36:14.650 回答