Skip to content

Instantly share code, notes, and snippets.

@nariakiiwatani
Created March 22, 2013 10:23
Show Gist options
  • Save nariakiiwatani/5220325 to your computer and use it in GitHub Desktop.
Save nariakiiwatani/5220325 to your computer and use it in GitHub Desktop.
<hoge/>を<hoge></hoge>に、 <hoge fuga="piyo"/>を<hoge fuga="piyo"></hoge>に置換する。 PHPのDOMDocument::saveXmlが空ノードをこう吐きだすのが嫌で。
preg_replace("/<([^ >]*)([^\>]*)\/>\n?/", "<\\1\\2></\\1>\n", $dom->saveXml());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment