基于php-simplexml-写出xml转json配上注释
/* 输出结果: {"book":[{"@attributes":{"category":"COOKING"},"title":{"@attributes":{"lang":"en"},"0":"Everyday Italian"},"author":"Giada De Laurentiis","year":"2005","price":"30.00"},{"@attributes":{"category":"CHILDREN"},"title":{"@attributes":{"lang":"en"},"0":"Harry Potter"},"author":"J.K. Rowling","year":"2005","price":"29.99"},{"@attributes":{"category":"WEB"},"title":{"@attributes":{"lang":"en"},"0":"Learning XML"},"author":"Erik T. Ray","year":"2003","price":"39.95"}]} */
/* 输出结果(带注释): { "book": [ { "@attributes": { "category": "COOKING" }, "title": { "@attributes": { "lang": "en" }, "0": "Everyday Italian" }, "author": "Giada De Laurentiis", "year": "2005", "price": "30.00" }, { "@attributes": { "category": "CHILDREN" }, "title": { "@attributes": { "lang": "en" }, "0": "Harry Potter" }, "author": "J.K. Rowling", "year": "2005", "price": "29.99" }, { "@attributes": { "category": "WEB" }, "title": { "@attributes": { "lang": "en" }, "0": "Learning XML" }, "author": "Erik T. Ray", "year": "2003", "price": "39.95" } ] } */
原文地址: http://www.cveoy.top/t/topic/l4b 著作权归作者所有。请勿转载和采集!