PHP code example of shahariaazam / gdrive-direct-download-link

1. Go to this page and download the library: Download shahariaazam/gdrive-direct-download-link 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/ */

    

shahariaazam / gdrive-direct-download-link example snippets



use ShahariaAzam\GDriveLinkExtractor\GoogleDriveLink;

= GoogleDriveLink::get($sharableURL);



function downloadLink($sharableLink)
{
    return preg_replace("/\/file\/d\/(.+)\/(.+)/", "/uc?export=download&id=$1", $sharableLink);
}

echo downloadLink('https://drive.google.com/file/d/FAKE_FILE_ID/view?usp=sharing');