コードがあるテキストがあります。私はリンクから最後のテキストを取得したい。ここに例があります簡単なhtml domのhtmlタグからinnertextを取得する方法
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のテキストを取得したいと思います。私はシンプルな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);
?>
私は取得する方法を取得します。助けてください
「http:// stackoverflow.com/questions/29048706/anchor-tag-in-php間のテキストを抽出する方法」 –
私はコードを少し変更しました。見てください – Kumar