从标签中提取文字 [英] extract text from tag

查看:91
本文介绍了从标签中提取文字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在这里有这些行,我试图提取文件中找到的第一段,但这无法返回任何结果,如果没有,它返回的结果甚至都不在<p>标记中,这很奇怪?

Hi I've got these lines here, I am trying to extract the first paragraph found in the file, but this fails to return any results, if not it returns results that are not even in <p> tags which is odd?

$file = $_SERVER['DOCUMENT_ROOT'].$_SERVER['REQUEST_URI'];
$hd = fopen($file,'r');
$cn = fread($hd, filesize($file));
fclose($hd);

$cnc = preg_replace('/<p>(.+?)<\/p>/','$1',$cn);

推荐答案

尝试一下:

$html = file_get_contents("http://localhost/foo.php");
preg_match('/<p>(.*)<\/p>/', $html, $match);
echo($match[1]);

这篇关于从标签中提取文字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆