我已經閱讀並嘗試了每篇關於此的POST,但無法讓它工作。 這是HTML:使用PHP提取META simple_html_dom.php
<meta itemprop="interactionCount" content="UserPlays:4635">
<meta itemprop="interactionCount" content="UserLikes:4">
<meta itemprop="interactionCount" content="UserComments:0">
我需要提取的 '4635' 位。
代碼:
<?php
$html = file_get_html($url);
foreach($html->find("meta[name=interactionCount]")->getAttribute('content') as $element) {
$val = $element->innertext;
echo '<br>Value is: '.$val;
}
我得不到任何回報?
你可以看一下手動鏈接http://simplehtmldom.sourceforge.net/ – jingyu
我用這個,因爲我需要的所有其他HTML元素,但只是無法弄清楚這最後一個。感謝您的評論 – Calamaster