Skip to content

Instantly share code, notes, and snippets.

@pistatium
Created January 21, 2014 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pistatium/8537401 to your computer and use it in GitHub Desktop.
Save pistatium/8537401 to your computer and use it in GitHub Desktop.
XMLからJSON形式への変換メモ(PHP) ref: http://qiita.com/pistatium@github/items/7cfcd4ccb91c6f4c43e9
$obj = simplexml_load_string($xml);
$json = json_encode($obj);
$obj = simplexml_load_string($xml, NULL, LIBXML_NOCDATA);
$json = json_encode($obj);
<items>
<item>Hoge</item>
</items>
<items>
<item>Hoge</item>
<item>Fuga</item>
</items>
{"item":"Hoge"}
{"item":["Hoge","Fuga"]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment