bear8421 / spreadsheets-basic
Light, simple and standalone Google Spreadsheets Basic Connector
Installs: 6 583
Dependents: 0
Suggesters: 1
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- ext-curl: *
- ext-json: *
README
1 thư viện nhỏ hỗ trợ việc đẩy dữ liệu lên Google Spreadsheets để làm Data thông qua Google Sheet API.
Lưu ý
Thư viện này chỉ nên đáp ứng những project nhỏ, làm việc với 1-2 file sheet ở cấp độ vừa và nhỏ
Nếu cần nhiều tính năng hơn, hãy làm việc với Google Sheet API trên Google Cloud Platform - Tham khảo tài liệu tại đây: https://developers.google.com/sheets/api
Version
Thư viện hỗ trợ 2 phiên bản song song, tùy thuộc vào phiên bản PHP của bạn sử dụng là gì để sử dụng cho thích hợp và tối ưu nhất
- v1.x support all PHP version
>=5.4
- v2.x support all PHP version
>=7.0
Cài đặt thư viện
Thư viện này được cài đặt thông qua Composer
composer require bear8421/spreadsheets-basic
<?php require_once __DIR__.'/vendor/autoload.php'; use nguyenanhung\Google\Basic\Spreadsheets\GoogleSpreadsheets; $scriptId = '1234'; $contentData = [ 'Column1_1' => 1, 'Column1_2' => 2, ]; $spreadsheets = new GoogleSpreadsheets(); $spreadsheets->setScriptId('1234') ->setContentData($contentData) ->push();
Liên hệ & Hỗ trợ
From Vietnam with Love <3