I have some text with css style (taken from database, so when I use echo, css show up) and I want to use preg_replace to replace that css (for example with space). I tried to do something like that:
$some = "<style[\d\D]*>[\d\D]*?</style>" ;
$text = $result['text'];
$a = preg_replace($some, " " ,$text);
...but its not working: Warning: preg_replace() [function.preg-replace]: Unknown modifier '['
Any idea how to fix that?
Thx for help and let me know if u need more info.
/<style[^>]*>[^<]*<\/style>/i.