只有100多行PHP 代码的七牛云离线下载
下载谷歌上面的android studio的程序包,速度实在太慢了。然后弄了个 php+shell 脚本的七牛云下载和 for codeigniter 版本的。今天又花了点时间来整理成 PHP 的。(PS:有个写法是用??这种 PHP7的新特征,可自行修改成 PHP5的)首发于:https://www.zzzzy.com/201605084032.html 持续更新 Github: [https://github.com/skiy/dev/blob/master/api/qiniu.php](https://github.com/skiy/dev/blob/master/api/qiniu.php)```<?php/** * 七牛云离线下载 * qiniu.php * @author : Skiychan <dev@skiy.net> * @link : https://www.zzzzy.com * @created : 5/8/16 * @modified: * @version : 0.0.1 * @doc : https://www.zzzzy.com/201605084032.html * 用了点 PHP7的新特征:?? 和 PHP5高版本的 [] 代替 array(),可自行修改 */$thisPage = basename($_SERVER['PHP_SELF']);if (empty($_POST)) { ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>七牛云离线下载</title> <style> input { display: block; } input[type=text] { width: 360px; } </style> </head> <body> <form action="<?php echo $thisPage; ?>" method="post"> <input type="text" name="url" id="url" placeholder="请输入链接" required> <input type="text" name="name" id="name" placeholder="请输入保存的文件名"> <input type="submit" name="submit" value="提交"> </form> </body> </html> <?php die;}$url = $_POST['url'] ?? ""; //PHP7//$url = isset($_POST['url']) ? $_POST['url'] : ""; //PHP5if (empty($url)) { header("Location: ".$thisPage);}function urlsafe_base64_encode($data) { $find = array('+', '/'); $replace = array('-', '_'); return str_replace($find, $replace, base64_encode($data));}function hmac_sha1($str, $key) { return hash_hmac("sha1", $str, $key, true);}//七牛云配置,请到七牛云上面申请帐号并填写密钥和bucketdefine("AccessKey", "AccessKey_12345689");define("SecretKey", "SecretKey_98764231");define("BUCKET", "Your bucket");define("HOST", "http://iovip.qbox.me");define("DOMAIN", "Your domain");$uploadFormat = "%s/fetch/%s/to/%s";$encodeURI = urlsafe_base64_encode($url);if (! empty($_POST['name'])) { $entry = BUCKET.':'.$_POST['name'];} else { $entry = BUCKET.':'.time()."_".explode('?', basename($url))[0];}$encodedEntryURI = urlsafe_base64_encode($entry);$uploadURL = sprintf($uploadFormat, HOST, $encodeURI, $encodedEntryURI);$parse = parse_url($uploadURL);$path = $parse['path'];$signingStr = isset($parse['query']) ? $path."?".$parse['query']."\n" : $path."\n";$sign = hmac_sha1($signingStr, SecretKey);$encodedSign = urlsafe_base64_encode($sign);$accessToken = AccessKey.":{$encodedSign}";$headers = [ "Authorization: QBox ".$accessToken, "Content-Type: application/x-www-form-urlencoded",];$ch = curl_init();// 设置URL和相应的选项curl_setopt($ch, CURLOPT_URL, $uploadURL);curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_TIMEOUT, 60);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);$data = curl_exec($ch);curl_close($ch);$data_obj = json_decode($data);if (isset($data_obj->error)) { echo "下载失败,<a href='javascript: history.back(-1)'>返回上一页</a>";} else { $data_obj->key = DOMAIN.$data_obj->key; echo "下载成功,您的下载地址为:<a href='{$data_obj->key}' target='_blank'>{$data_obj->key}</a><br /><a href='javascript: history.back(-1)'>返回上一页</a>"; //echo json_encode($data_obj);}```

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
