Zend_Gdata_Spreadsheets:如何有效地删除和插入 2 列新数据

发布于 2024-11-18 12:26:40 字数 220 浏览 1 评论 0原文

案例:

  1. 具有 2 列数据的电子表格。这些列被命名为“名字”和“姓氏”。 数据集的一些示例:“John Bond”和“Stive Colins”等。

  2. 我需要删除上面的列数据并在这些列中插入一些新数据。

  3. 应该使用 Zend_Gdata_Spreadsheets 类以有效的方式完成。

谢谢

The case:

  1. Spreadsheets that have 2 columns with data. The columns are named "first name" and "last name".
    Some examples of datasets: "John Bond" and "Stive Colins" etc.

  2. I need to delete the above columns data and insert some new data into these columns.

  3. It should be done in an efficient way with Zend_Gdata_Spreadsheets class.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

当爱已成负担 2024-11-25 12:26:40

你可以使用updateRow或deleteRow

$updatedListEntry = $spreadsheetService->updateRow($oldListEntry,
                                                   $newRowData);

$spreadsheetService->deleteRow($listEntry);

我觉得更新行是更好的选择,因为它是一个请求,如果删除行你需要删除并重新插入它需要调用api两次

You can use updateRow or deleteRow

$updatedListEntry = $spreadsheetService->updateRow($oldListEntry,
                                                   $newRowData);

$spreadsheetService->deleteRow($listEntry);

I feel update row is better option as it is one request, in case of delete row u need to delete and reinsert it needs to call api twice

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