<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
egapool / instant-googlespreadsheet-output example snippets
stantGoogleSpreadSheetOutput\Outputer;
$data = [
['日','月','火','水','木','金','土'],
['あれ','これ','それ','これ?','どれ?','それ','えっ'],
];
// create instanse
$outputer = new Outputer('/path/to/youre/spreadsheet-xxxxxxxxx.json');
// create new SpreadSheet
$outputer
->creatSheet('シートのタイトル') // create new SpreadSheet with title word
->write($data) // insert data
->attatchAuthToUser('test[at]gmail.com'); // permit others to access this sheet
echo $outputer->spreadsheet->spreadsheetUrl;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.