Writing to Google Docs Spreadsheet using PHP

前端 未结 2 822
悲&欢浪女
悲&欢浪女 2021-02-06 05:20

Is there anyway I could write data to a Google Docs Spreadsheet using PHP, besides the Zend library? I have tried the Zend library, and while it is helpful, I want to be able to

2条回答
  •  无人共我
    2021-02-06 06:12

    The Zend library should be able to edit the contents of a given cell within the spreadsheet. See documentation here: http://code.google.com/apis/spreadsheets/data/1.0/developers_guide_php.html#updateCell

    The 'updateCell' method allows you to pass in a row and column as your target, and set the contents to the new value. Have you had a chance to try this method?

提交回复
热议问题