将XML保存为Mongo DB中的字符串

时间:2015-10-30 08:26:27

标签: xml mongodb

我有一些问题。我在mongo db collection中将xml保存为字符串。

'request' : '<company><name>ABC</name><link href="abc.com">Website</link><person>Abi</person><person>Harry</person><person>Rasmus</person><person>Tamlyn</person><address street="yes"><street>Longford Street</street><city>London</city></address></company>'

但是当我运行find查询来获取xml时,

$connection->selectDB(DB_NAME)->selectCollection(COLCTN_NAME)->find('request');

我得到一个包含xml标签之间数据的字符串,我没有得到带标签的完整xml。

ABCWebsiteAbiHarryRasmusTamlynLongford StreetLondon

请建议如何使用标签获取完整的xml。

0 个答案:

没有答案