1

我在表中有一个带有text名称的字段。该表的一行是:

<message type="chat"
         id="purple6ba21864" 
         to="10713@172.30.12.44/e859f0e7" 
         from="10735@172.30.12.44/qutecom">

<active xmlns="http://jabber.org/protocol/chatstates"/>
<body>test</body>
<thread>aaaa</thread>
</message>

结果: testaaaa

我只需要显示“测试”。

4

1 回答 1

3

截至目前(1.1.13 版),Yii 不提供任何帮助类来处理 XML 数据,即使在某些情况下基于 XML 的功能是明显的遗漏(例如,假设的CXmlDataProvider)。

目前,您将不得不使用标准 PHP API(simplexml、DOMDocument 等)或第三方 XML 库手动处理 XML。

于 2013-01-13T13:45:40.870 回答