php domdocument read element inner text

旧巷老猫 提交于 2019-11-26 23:36:19

问题


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?


回答1:


To get the text that an element contains, you need the textContent property:

$text = $data->textContent;


来源:https://stackoverflow.com/questions/17054815/php-domdocument-read-element-inner-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!