Văn bản bên trong thẻ
bên trong class ="text" bên trong
với class ="main" có thể lấy bằng mã sau -
Ví dụ
$html = <<<HTML
<div class="main">
<div class="text">
This is text 1
</div>
</div>
<div class="main">
<div class="text">
This is text 2
</div>
</div>
HTML;
$dom = new DOMDocument();
$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
XPath queries along with the DOMXPath::query method can be used to return the list of elements that are searched for by the user.
$tags = $xpath->query('//div[@class="main"]/div[@class="text"]');
foreach ($tags as $tag) {
var_dump(trim($tag->nodeValue));
} Đầu ra
Điều này sẽ tạo ra kết quả sau -
string ‘This is text 1’ (length=14) string ‘This is text 2' (length=14)