Linux系統通過配置form.api文件屬性將圖片放到cdn中
1.在Linux系統中,打開form.api文件;
[root@centosGuli bin]# vi form.api
2.form.api文件打開后,在文件寫入配置即可;
function upload_cdn($file_path) {
if (class_exists('\CURLFile')) {// 這里用特性檢測判斷php版本
$file_path = new \CURLFile(realpath($file_path));//>=5.5
} else {
$file_path = '@'.$file_path;//<=5.5
}
$url = "服務器地址";
$data = array(
'imgfile1'=>$file_path,
'PHPSESSID'=>'ba4d1587aab023fd8cfa28fbe36c8235',
'totalform'=>'1'
);
$result = doPost2($url,$data);
return $result;
}