建立並進入專案
$ mkdir markdown-images-to-qiniu $ cd markdown-images-to-qiniu
安裝七牛官方的擴充套件
$ composer require qiniu/php-sdk
實現思路很簡單
● 讀取 makrdown 檔案
● 正則匹配出所有的圖片
● 依次上傳圖片
● 將文章圖片的地址替換為圖床地址
● 儲存替換後的文章
以下是具體的實現,首先在專案目錄下建立指令碼 index.php,
<?php require 'vendor/autoload.php'; use QiniuAuth; use QiniuStorageUploadManager; // 1. 讀取 `makrdown` 檔案 $file = $argv[1]; if(! file_exists($file) ){ return "找不到檔案{$file}"; } $orginalContent = file_get_contents($file); // 2. 正則匹配出所有的圖片 preg_match_all( '/![.*](.+)/', $orginalContent, $matches, PREG_PATTERN_ORDER ); $mdImageArr = $matches[0]; if(! count($mdImageArr) ){ return "無需上傳圖片"; } // 3. 依次上傳圖片 $accessKey = '你的 AccessKey'; $secretKey = '你的 SecretKey'; $bucket = '你的七牛空間名'; // eg. mindgeek $url = "空間所系結的域名"; // eg. http://qiniu.site.com $auth = new Auth($accessKey, $secretKey); $token = $auth->uploadToken($bucket); $uploadMgr = new UploadManager(); $content = $orginalContent; foreach ($mdImageArr as $image) { $start = mb_strpos($image, '](') + 2; $localPath = mb_substr($image, $start, -1); $extension = pathinfo($localPath)['extension']; $uploadPath = uniqid(). ".". $extension; list($ret, $error) = $uploadMgr->putFile($token, $uploadPath, $localPath); if(! $error ){ // 4. 將文章圖片的地址替換為圖床地址 $content = str_replace($localPath, $url.$uploadPath, $content); echo "{$uploadPath} 上傳成功。n"; } else { echo "{$uploadPath} 上傳失敗。n"; } } // 5. 儲存替換後的文章 file_put_contents($file, $content);
使用
$ php index.php test.md
以上就是PHP指令碼實現Markdown文章上傳到七牛圖床的詳細內容,更多請關注TW511.COM其它相關文章!