fork download
  1. <?php
  2. $str = '<span><div id="some_id">this is the variable</div><div style="font-family:courier;">this variable</div></span>';
  3. $str = preg_replace('/\<[\/]{0,1}div[^\>]*\>/i', '', $str);
  4. echo $str;
  5. ?>
Success #stdin #stdout 0.03s 26112KB
stdin
Standard input is empty
stdout
<span>this is the variablethis variable</span>