欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP把图片上传到又拍云

程序员文章站 2022-03-17 13:37:03
...
注意:网站使用CDN上的图片有利有减轻网站的压力,同时也要注意在本地存一份同路径的图片,当云盘有问题时,可以马上切换到本地来访问。
/* 在原有的编辑器基础上增加图片上传到cdn的功能*/
header("Content-Type: text/html; charset=utf-8");

error_reporting( E_ERROR | E_WARNING );

$Path = "./images/"; /* 设置文件的存储路径 */

$ymd = date("Y").date("m").date("d"); //文件路径格式

$file_save_url=$Path.$ymd."/"; //本地存储路径

$save_url= $ymd. "/"; //优盘云存储路径

include "upyun.class.php";//引入优盘云处理类

include "upyun_config.php";//优盘云配置

//实例化优盘云
$upyun = new UpYun($img_bucketname, $img_username, $img_password);

try {

$file=$file_save_url.$info['name'];// 本地路径加文件名

$con =$save_url.$info['name'];//优盘云路径加文件名

$opts = array( UpYun::CONTENT_MD5 => md5(file_get_contents($file)) );

$fh = fopen($file, "rb");

// 上传图片,自动创建目录
$rsp = $upyun->writeFile("/".$con, $fh, True, $opts);

fclose($fh);

} catch(Exception $e) {

$filename = "error_log.txt";

$errorcontent = "image " . date("Y-m-d H:m:s") . " " . $e->getCode()." " . $e->getMessage() . "\r\n";

$handle = fopen($filename, 'a');

fwrite($handle, $errorcontent);

fclose($handle);

exit;

}
原文链接:http://www.lujianlong.com/?p=260

PHP把图片上传到又拍云 upyun.rar ( 4.56 KB 下载:4 次 )