I'm new to php so please forgive the simple question:
How do I extract the text from an element?
<span id="myElement">Some text I want to read</span>
I have this for a start:
<?php
$data = $dom->getElementById("myElement");
$html = $dom->saveHTML($data);
But then? What is the correct instruction?
To get the text that an element contains, you need the textContent
property:
$text = $data->textContent;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With