如何在简单的 html dom 中从 html 标签获取想要的内文
How to get desire innertext from html tag in simple html dom
我有一些文本,其中有代码。我想从 link 获取最后一条文本。这是一个例子
Some text<a href="http://beezfeed.cu.ma">Beezfeed.cu.ma</a><br>
another text<a href="http://google.com">Google.com</a><br>
我想从上面的代码中获取 Google.com 文本。我试过并使用 Simple html dom。无论如何,这是我的代码
<?PHP
require_once('simple_html_dom.php');
$html = new simple_html_dom();
function tags($ddd){
$bbb=$ddd->find('a',1);
foreach($bbb as $bs){
echo $bs->innertext;
}
}
$html = str_get_html('Some text<a href="http://beezfeed.cu.ma">Beezfeed.cu.ma</a><br>
another text<a href="http://google.com">Google.com</a><br>');
echo tags($html);
?>
我要获取Google.com怎么获取。请帮助我
我强烈建议您使用一些外部库来解析 HTML。任何你需要的HTML。根据您今天的需要或将来的需要。
一些非常好的工具在里面命名 these Whosebug post.
我个人使用 simplehtmldom.sourceforge.net 以来效果非常好。
我有一些文本,其中有代码。我想从 link 获取最后一条文本。这是一个例子
Some text<a href="http://beezfeed.cu.ma">Beezfeed.cu.ma</a><br>
another text<a href="http://google.com">Google.com</a><br>
我想从上面的代码中获取 Google.com 文本。我试过并使用 Simple html dom。无论如何,这是我的代码
<?PHP
require_once('simple_html_dom.php');
$html = new simple_html_dom();
function tags($ddd){
$bbb=$ddd->find('a',1);
foreach($bbb as $bs){
echo $bs->innertext;
}
}
$html = str_get_html('Some text<a href="http://beezfeed.cu.ma">Beezfeed.cu.ma</a><br>
another text<a href="http://google.com">Google.com</a><br>');
echo tags($html);
?>
我要获取Google.com怎么获取。请帮助我
我强烈建议您使用一些外部库来解析 HTML。任何你需要的HTML。根据您今天的需要或将来的需要。 一些非常好的工具在里面命名 these Whosebug post.
我个人使用 simplehtmldom.sourceforge.net 以来效果非常好。