-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
71 lines (41 loc) · 1.46 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
require_once __DIR__ . '/vendor/autoload.php';
// Google Spread Sheet 用クライアント作成
function getGoogleSheetClient() {
$auth_str = getenv('authstr');
$json = json_decode($auth_str, true);
$client = new Google_Client();
$client->setAuthConfig( $json );
$client->setScopes(Google_Service_Sheets::SPREADSHEETS);
$client->setApplicationName('ReadSheet');
return $client;
}
function GetSheet( $sheetid, $sheetname, $client ) {
// $client = getGoogleSheetClient();
$client->addScope(Google_Service_Sheets::SPREADSHEETS);
$client->setApplicationName('ReadSheet');
$service = new Google_Service_Sheets($client);
$response = $service->spreadsheets_values->get($sheetid, $sheetname);
$values = $response->getValues();
return $values;
//var_dump( $values );
}
function GetFirstSheetName( $spreadsheetID, $client ){
$service = new Google_Service_Sheets($client);
$response = $service->spreadsheets->get($spreadsheetID);
foreach($response->getSheets() as $s) {
$sheets[] = $s['properties']['title'];
}
$ret = $sheets[0];
return $ret ;
}
function Getsheets($spreadsheetID, $client) {
$sheets = array();
$sheetService = new Google_Service_Sheets($client);
$spreadSheet = $sheetService->spreadsheets->get($spreadsheetID);
$sheets = $spreadSheet->getSheets();
foreach($sheets as $sheet) {
$sheets[] = $sheet->properties->sheetId;
}
return $sheets;
}