Created
March 22, 2018 11:34
-
-
Save kobus1998/4abad2d3dbdac1282faa64526329c34f to your computer and use it in GitHub Desktop.
Modify all html and xml nodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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