[編集]エラーが示すように、私のphp.iniはスクリプトごとに1GBのRAMを割り当てます(memory_limit = 1G)。これは十分すぎるはずなので、この制限を増やしたり変更したりする方法を尋ねていません。この質問は、この他の未回答の質問の複製と見なすことができることがわかりました。PHPクライアントライブラリを使用して大きなファイルをGoogleドライブにアップロードする
googleAPIのクイックスタートガイドで提供されているPHPCLIスクリプトを使用して、VPSからgoogleドライブアカウントに大きなファイル(237MB)をアップロードしようとすると、次のエラーが発生します。
PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted
(tried to allocate 316952783 bytes) in
/var/www/google-api-php-client/src/service/Google_MediaFileUpload.php on line 135
スクリプト:
<?php
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_DriveService.php';
$client = new Google_Client();
// Get your credentials from the APIs Console
$client->setClientId('MY_CLIENT_ID');
$client->setClientSecret('MY_CLIENT_SECRET');
$client->setRedirectUri('urn:ietf:wg:oauth:2.0:oob');
$client->setScopes(array('https://www.googleapis.com/auth/drive'));
$service = new Google_DriveService($client);
$authUrl = $client->createAuthUrl();
//Request authorization
print "Please visit:\n$authUrl\n\n";
print "Please enter the auth code:\n";
$authCode = trim(fgets(STDIN));
// Exchange authorization code for access token
$accessToken = $client->authenticate($authCode);
$client->setAccessToken($accessToken);
//Insert a file
$file = new Google_DriveFile();
$file->setTitle('My zip file');
$file->setDescription('A test zip file');
$file->setMimeType('application/zip');
$data = file_get_contents('myfile.zip');
$createdFile = $service->files->insert($file, array(
'data' => $data,
'mimeType' => 'application/zip',
));
print_r($createdFile);
?>
topは、787816kの物理メモリが空いている(さらに2Gキャッシュがある)と言っているので、問題がどこにあるのかわかりません。手がかりはありますか?