使用 file_get_contents 时如何从特定标签获取内容

发布于 2025-01-05 18:15:10 字数 115 浏览 0 评论 0原文

例如,我有一个 .txt 文件,名为cache.txt。它包含一些信息,我需要从 **THESE** 标签获取内容。有什么想法吗? 谢谢。

For example i have one .txt file, called cache.txt. It contains some information, and i need to get content from <span class="date">**THESE**</span> tags. Any ideas?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哽咽笑 2025-01-12 18:15:10

您可以使用简单的HTML DOM

示例:

cache.txt

<span class="abc">Lorem Ipsum</span>
<span class="date">THESE</span>
<span class="def">Dolor sit amet</span>

file.php

<?php    
include 'simple_html_dom.php';    
$html = file_get_html('cache.txt');    
echo $html->find('span[class=date]',0);  //Output: THESE
?>

You can use Simple HTML DOM

Example:

cache.txt

<span class="abc">Lorem Ipsum</span>
<span class="date">THESE</span>
<span class="def">Dolor sit amet</span>

file.php

<?php    
include 'simple_html_dom.php';    
$html = file_get_html('cache.txt');    
echo $html->find('span[class=date]',0);  //Output: THESE
?>
一抹苦笑 2025-01-12 18:15:10
**Check this out it will bring the result**
//cache.txt
<span class="date">**THESE**</span>

//index.php
<?php
$dom = new DOMDocument();
$dom->load('cache.txt');
$xml = simplexml_import_dom($dom);
$data = $xml->xpath('/span');
echo $data[0][0];
?>
**Check this out it will bring the result**
//cache.txt
<span class="date">**THESE**</span>

//index.php
<?php
$dom = new DOMDocument();
$dom->load('cache.txt');
$xml = simplexml_import_dom($dom);
$data = $xml->xpath('/span');
echo $data[0][0];
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文