1. Go to this page and download the library: Download mutusen/google-sheets-crud library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mutusen / google-sheets-crud example snippets
use Mutusen\GoogleSheetsCRUD\GoogleSheetsCRUD;
$gs = new GoogleSheetsCRUD(
'sheet id', // Found in the URL of the Google Sheet: https://docs.google.com/spreadsheets/d/.../edit
'service account' // JSON object given by the Google Sheets API
);
/*
* Returns:
* Array
(
[0] => Array
(
[id] => 1
[name] => Julie
[country] => France
[city] => Paris
)
[1] => Array
(
[id] => 2
[name] => Julien
[country] => France
[city] => Montpellier
)
...
)
*/
$data = $gs->readAll('People');
// You can also specify a range in the sheet (works for all other functions except appendRow())
$data = $gs->readAll('People!B1:D6');
/*
* Returns:
* Array
(
[id] => 1
[name] => Julie
[country] => France
[city] => Paris
)
* If there are several matches, it stops at the first one
*/
$data = $gs->getRowWhere('People', 'id', 1);
// You cannot use a range after the name of the sheet
// The values have to be in the right order
$gs->appendRow('People', [11, 'Maria', 'Italy', 'Milan']);
// You cannot use a range after the name of the sheet
// The values have to be in the right order
$rows = [
[11, 'Maria', 'Italy', 'Milan'],
[12, 'Oleh', 'Ukraine', 'Lviv']
];
$gs->appendRows('People', $rows);
// You can update multiple values in a single row
$gs->updateFieldsWhere('People', 'id', 11, [
'country' => 'Spain',
'city' => 'Madrid',
]);
// If you use a search criterion that matches several rows, they all will be updated
$gs->updateFieldsWhere('People', 'country', 'France', [
'country' => 'Belgium',
'city' => 'Brussels',
]);
// If you want to update a sheet according to several criteria (e.g. several ids)
use Mutusen\GoogleSheetsCRUD\GSCMultipleLinesUpdate;
$query = new GSCMultipleLinesUpdate($gs, 'People');
$query->updateWhere('id', 9, ['name' => 'Irina']);
$query->updateWhere('id', 10, ['name' => 'Jonas']);
$query->updateWhere('id', 11, ['name' => 'Ines']);
$query->execute();