forrestedw/laravel-google-docs

为 google/apiclient 提供方便的链式包装器

dev-master 2020-05-06 14:42 UTC

This package is auto-updated.

Last update: 2024-09-06 23:51:56 UTC


README

google/apiclient 提供方便的链式包装器

目前很简单。需要时再添加更多功能。

开始使用

观看 这个 视频来设置你的 credetials.json,然后

use Forrestedw\GoogleDocs\GoogleDoc;

$document = (new GoogleDoc);

通过 ID 获取文档

$document->getById('1QbVPiSgv8FR30Ap22cv5frIiO4VCUkRA5srdYSc8D3w'); // id from the url, eg https://docs.google.com/document/d/1QbVPiSgv8FR30Ap22cv5frIiO4VCUkRA5srdYSc8D3w/

功能

在文档中查找并替换所有 lead 实例为 gold

$document->findAndReplace('lead', 'gold'); // returns the number of replacements made.
$title = $document->getTitle() // eg 'Document 1'