Skip to content

Instantly share code, notes, and snippets.

@kobus1998
Created March 22, 2018 11:34
Show Gist options
  • Save kobus1998/4abad2d3dbdac1282faa64526329c34f to your computer and use it in GitHub Desktop.
Save kobus1998/4abad2d3dbdac1282faa64526329c34f to your computer and use it in GitHub Desktop.
Modify all html and xml nodes
<?php
$p = "/<\s*[^\/].*\s*>/";
$str = "
<div>
<p>
Tessttst jhsdfb skfsdk
</p>
</div>
";
$result = preg_replace_callback($p, function ($m) {
return substr(@reset($m), 0, -1) . " style=''>";
}, $str);
print_r($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment