0
將文件下載到本地目錄我正在使用Google驅動器sdk。我正在使用以下代碼Google驅動器 - 如何使用php
$drive_service = new Google_Service_Drive($client);
$results = $drive_service->files->listFiles();
$items = $results->getItems();
foreach($items as $listItem){
$url[] = $listItem['selfLink'];
}
echo "<pre>"; print_r($url); exit;
There url shows all links.
你的問題是什麼? – AniV
我想下載谷歌驅動器文件。在任何特定的位置 – Sudhir