Jump to content
php.lv forumi

XML->JSON->XML


eT`

Recommended Posts

Vai kāds ir saskāries ar universālu bibliotēku, kas varētu jebkura XML strūktūru ( bez datiem ) pārkonvertēt uz JSON stringu un atpakaļ.

Respektīvi, algoritms, kas māk pārveidot šādu:


<root>
    <term>
        <key>KEY</key>
        <val>VAL</val>
    </term>
    <term>
        <key>KEY2</key>
        <val>VAL2</val>
    </term>
</root>

par kaut ko šādu: {"root":{"term":[{"key":"KEY"},{"val":"PHRASE"}]}}

 

bet arī šādu:

<root>
    <term id="KEY">VAL</term>
    <term id="KEY2">VAL2</term>
    <term id="KEY3">VAL3</term>
</root>

 

par kaut ko līdzīgu ( šim es neizdomāju JSON stringu )

 

Link to comment
Share on other sites

Kapēc Tev neder šis http://www.php.net/manual/en/book.simplexml.php#Vu108688 piemērs? VIenā virzienā jau ir uztaisīts, atliek tikai šo funkciju pārveidot pretējā :) 

Oj paldies. šis varētu derēt. Jāpatestē. JSON gan izskatīsies interesants, bet tas nav svarīgi. un vēl jāpārveido mazliet lai datus neraksta.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...