php form表單提交 然後上傳圖片到七牛
require_once APP_ROOT.'/vendor/config.php';
use Qiniu\Auth;
use Qiniu\Storage\UploadManager;//引入上傳類
/*
$name 上傳圖片的名字 :$_FILES['file']['name']
$filePath 圖片:$_FILES['file']['tmp_name']
*/
function postDoupload($name,$filePath){
$filetype = explode('.',$name);//獲取副檔名 防止有的手機不支援七牛
$accessKey =Config::AK;
$secretKey = Config::SK;
$bucket = Config::BUCKET_IMG_NAME;
// 構建鑑權物件
$auth = new Auth($accessKey, $secretKey);
// 生成上傳 Token
$token = $auth->uploadToken($bucket);
// 要上傳檔案的本地路徑
$filePath = $filePath;
// 上傳到七牛後儲存的檔名
$key =time().mt_rand(1,1000)."." .$filetype[1];
// 初始化 UploadManager 物件並進行檔案的上傳。
$uploadMgr = new UploadManager();
// 呼叫 UploadManager 的 putFile 方法進行檔案的上傳。
list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
$url=Config::IMG_DOMAIN.$ret['key'];
return $url;die();
}