SimpleXML 添加 Excel 的子项和属性

发布于 2024-12-08 21:53:59 字数 479 浏览 1 评论 0原文

我对此很陌生,我的问题应该很简单。假设我有这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-12-15 21:53:59

首先,您必须使用位置路径检索所需的节点然后,在构造 新元素 后,您可以使用方法 <一个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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文