如何在PHP中的锚标记之间显示文本(文件名)?

时间:2015-04-23 07:36:36

标签: php html domdocument

我跟随我的字符串,其中文件名出现在锚标记之间:

  $test1 = test<div class="comment_attach_file">
            <a class="comment_attach_file_link" href="http://52.1.47.143/feed/download/year_2015/month_04/file_3b701923a804ed6f28c61c4cdc0ebcb2.txt" >phase2 screen.txt</a><br>
            <a class="comment_attach_file_link_dwl"  href="http://52.1.47.143/feed/download/year_2015/month_04/file_3b701923a804ed6f28c61c4cdc0ebcb2.txt" >Download</a>
            </div>;

  $test2 =  This is a holiday list.<div class="comment_attach_file">
            <a class="comment_attach_file_link" href="http://52.1.47.143/feed/download/year_2015/month_04/file_2c96b997f03eefab317811e368731bb6.pdf" >Holiday List-2013.pdf</a><br>
            <a class="comment_attach_file_link_dwl"  href="http://52.1.47.143/feed/download/year_2015/month_04/file_2c96b997f03eefab317811e368731bb6.pdf" >Download</a>
            </div>;

  $test3 = <div class="comment_attach_file">
            <a class="comment_attach_file_link" href="http://52.1.47.143/feed/download/year_2015/month_04/file_8479c0b60867fdce35ae94a668dfbba9.docx" >sample2.docx</a><br>
            </div>;

从第一个字符串我想要文本(即文件名)“phase2 screen.txt”

从第二个字符串我想要文本(即文件名)“Holiday List-2013.pdf”

从第三个字符串我想要文本(即文件名)“sample2.docx”

我应该如何在PHP中使用$dom = new DOMDocument;

请有人帮帮我。

感谢。

2 个答案:

答案 0 :(得分:0)

如果你想在用户浏览器中显示的哈希标记或锚之后获取值:使用“标准”HTTP是不可能的,因为这个值永远不会发送到服务器(因此它不可用在$_SERVER["REQUEST_URI"]或类似的预定义变量中)。您需要在客户端使用某种JavaScript魔法,例如:将此值包含为POST参数。

在dom中你可以使用这样的功能来获取链接并根据需要进行更改

    function findAnchors($html)
{
    $links = array();
    $doc = new DOMDocument();
    $doc->loadHTML($html);
    $navbars = $doc->getElementsByTagName('div');
    foreach ($navbars as $navbar) {
        $id = $navbar->getAttribute('id');
        if ($id === "anchors") {
            $anchors = $navbar->getElementsByTagName('a');
            foreach ($anchors as $a) {
                $links[] = $doc->saveHTML($a);
            }
        }
    }
    return $links;
}

答案 1 :(得分:0)

您可以使用DOMxpath来定位包含所需文本的链接,使用其类指向它:

$dom = new DOMDocument;
for($i = 1; $i <= 3; $i++) {
    @$dom->loadHTML(${"test{$i}"});
    $xpath = new DOMXpath($dom);
    $file_name = $xpath->evaluate('string(//a[@class="comment_attach_file_link"])');
    echo $file_name , '<br/>';
}

或者,如果您不想使用xpath,您可以获取锚元素并检查其类,如果是该类,则获取->nodeValue

$dom = new DOMDocument;
for($i = 1; $i <= 3; $i++) {
    @$dom->loadHTML(${"test{$i}"});
    foreach($dom->getElementsByTagName('a') as $anchor) {
        if($anchor->getAttribute('class') === 'comment_attach_file_link') {
            echo $anchor->nodeValue, '<br/>';
            break;
        }
    }
}

Sample Output