0

更新:(最初から説明していなかったブロックを含め、物事はより複雑ですが、これは正規表現などで機能するはずだと理解しています)

空ではないタグごとにHTMLブロックをテーブルレイアウトに解析する方法は? 例として、この HTML:

<p class="block1">
    <span class="styleclass2">
        <span class="styleclass25">
            <strong>
                <u></u>Some Text Here
            </strong>
            <br>
        </span>
    </span>
    <span class="styleclass5">
        <u>
            <a href="http://www.example.com">www.example.com</a>
        </u>
    </span>
    <br>
    <span class="styleclass24">Some Text Here</span>
</p>
<p class="block2">
    <span class="styleclass2">
        <span class="styleclass25">
            <strong>
                <u></u>Some Text Here2
            </strong>
            <br>
        </span>
    </span>
    <span class="styleclass5">
        <u>
            <a href="http://www.example2.com">www.example2.com</a>
        </u>
    </span>
    <br>
    <span class="styleclass24">Some Text Here2</span>
</p>

そしてこれらを作ります:

<table>
    <tr>
        <td>Some Text Here</td>
        <td>www.example.com</td>
        <td>Some Text Here</td>
    </tr>
    <tr>
        <td>Some Text Here2</td>
        <td>www.example2.com</td>
        <td>Some Text Here2</td>
    </tr>
</table>

主なアイデアは、このブロックをグループ化して、見つかったすべてのブロックの行を作成する方法です...

4

2 に答える 2

1

正規表現は魔法です。これを試してください。

<?php
$string = '<p class="styleclass1">
    <span class="styleclass2">
        <span class="styleclass25">
            <strong>
                <u>Some Text Here</u>
            </strong>
            <br>
        </span>
    </span>
    <span class="styleclass5">
        <u>
            <a href="http://www.example.com">www.example.com</a>
        </u>
    </span>
    <br>
    <span class="styleclass24">Some Text Here</span>
</p>';

$result = preg_match_all("/<\w+.*?>(.*?)<\/\w+>/", $string, $matches);

echo '<pre>';
print_r($matches);
echo '</pre>';

$output = '<table style="border: 1px solid #000;">';

foreach ($matches[1] as $key => $value) {
    $output .= '<tr>';
    $output .= '<td>'.$value.'</td>';
    $output .= '</tr>';
}

$output .= '</table>';

echo $output;
?>
于 2013-02-21T15:39:10.853 に答える
0

ホッジーコード:)

$html = <<<HERE
<p class="styleclass1">
    <span class="styleclass2">
        <span class="styleclass25">
            <strong>
                <u>Some Text Here</u>
            </strong>
            <br>
        </span>
    </span>
    <span class="styleclass5">
        <u>
            <a href="http://www.example.com">www.example.com</a>
        </u>
    </span>
    <br>
    <span class="styleclass24">Some Text Here</span>
</p>
HERE;
preg_match_all('#>(.+)<#sU', $html, $matches);
if(isset($matches[1]))
{
    echo '<table border="1">';
    foreach($matches[1] as $val)
    {
        $val = trim($val);
        if(!empty($val))
            echo '<tr><td>' . $val . '</td></tr>';
    }
    echo '</table>';
}
于 2013-02-21T15:37:46.810 に答える