How to remove text between tags in php?

前端 未结 6 888
时光取名叫无心
时光取名叫无心 2020-12-06 00:56

Despite using PHP for years, I\'ve never really learnt how to use expressions to truncate strings properly... which is now biting me in the backside!

Can anyone prov

6条回答
  •  無奈伤痛
    2020-12-06 01:21

    Using SimpleHTMLDom:

    find('a') as $e) {
        $e->innerText = null;
    }
    
    // dump contents
    echo $html;
    ?>
    

提交回复
热议问题