This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
PiratX-Archive/.github/FILE_LINK.php

11 lines
418 B
PHP
Raw Normal View History

2017-03-27 12:33:21 +02:00
<?php
$json = file_get_contents('https://api.github.com/repos/kriztan/Pix-Art-Messenger/releases/latest');
$data = json_decode($json);
2017-03-27 12:56:19 +02:00
$filename = $data->assets[0]->name;
$filesize = $data->assets[0]->size;
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'";');
header('Content-Length: '.$filesize);
readfile($data->assets[0]->browser_download_url);
2017-03-27 12:33:21 +02:00
?>