<?php $post = (object)['content' => '<style>some random css</style>the text I really want']; $doc = new DOMDocument(); $doc->loadHTML($post->content); echo $doc->getElementsByTagName('body')->item(0)->nodeValue . "\n"; echo preg_replace('#<style>.*?</style>#', '', $post->content);
You have javascript disabled. You will not be able to edit any code.