SimpleXML 添加 Excel 的子项和属性
我对此很陌生,我的问题应该很简单。假设我有这个 xml:
<?xml version="1.0"?>
....
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
....
<Worksheet ss:Name="sheet1">
....
<Worksheet ss:Name="sheet2">
....
如何在工作表 1 中添加第 5 行中的单元格,如下所示:
<Cell ss:Index="5" ss:StyleID="s22"><Data ss:Type="String">Some text</Data></Cell>
使用 SimpleXML? 请任何有代码示例的人。
I'n really new to this and my question should be simple. Lets say i have this xml:
<?xml version="1.0"?>
....
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
....
<Worksheet ss:Name="sheet1">
....
<Worksheet ss:Name="sheet2">
....
How do i add in worksheet 1 a cell in row 5 looking like this:
<Cell ss:Index="5" ss:StyleID="s22"><Data ss:Type="String">Some text</Data></Cell>
using SimpleXML?
Anyone with sample of code, please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须使用位置路径检索所需的节点然后,在构造 新元素 后,您可以使用方法 <一个href="http://php.net/manual/en/simplexmlelement.addchild.php" rel="nofollow">addchild。
First of all, you have to retrieve the node you need using a Location Path and then, after you construct the new element, you can use the method addchild.