主頁 > 知識庫 > 保存遠程圖片函數(shù)修改正版

保存遠程圖片函數(shù)修改正版

熱門標(biāo)簽:保定電銷機器人軟件 電話機器人案例 電話機器人銷售公司嗎 客服外呼系統(tǒng)呼叫中心 鎮(zhèn)江云外呼系統(tǒng)怎么樣 vue 地圖標(biāo)注拖拽 自動外呼系統(tǒng)怎么防止封卡 土地證宗地圖標(biāo)注符號 成都銷售外呼系統(tǒng)公司
趁今天有空,修正了一下這個函數(shù),經(jīng)測試,在本地服務(wù)器通過,在空間商服務(wù)器也可正常使用,沒發(fā)現(xiàn)錯誤。我的卡巴斯基不報毒了。^_^

只要修改一下,這個函數(shù)是放在哪個網(wǎng)站都適用的。在此只與添加圖片為例說明一下調(diào)用方法,其它位置方法類似。

在我本機測試成功,由于現(xiàn)在連不上空間的FTP,所以無辦在空間上測試,發(fā)現(xiàn)問題請到群中提出。

一、把下面函數(shù)放到Ft_admin_conn.asp的最后

'==================================
'=函 數(shù) 名:saveimgfile
'=功 能: 保存遠程圖片
'=參數(shù)說明:imgfileurl--遠程圖片地址
'=修改日期: 2006-4-19 13:20
'=程序作者:冷風(fēng)
'=網(wǎng) 站:http://www.4fnet.com.cn
'==================================
function saveimgfile(imgfileurl)
dim img_type,savepath,imgfiletype,flag,imgbody
savepath="../FUploadFile/"year(now())"-"month(now())
flag=false
imgfiletype=right(imgfileurl,4)'獲取遠程圖片的格式
img_type=".gif|.bmp|.jpg|.png"'設(shè)置允許保存在本地的圖片格式
typeArr=split(img_type,"|")
for i=0 to ubound(typeArr)-1
if imgfiletype=typeArr(i) then
flag=true
exit for
end if
next
if flag=false then'如果不是允許保存到本地的圖片格式,則只連接遠程圖片
saveimgfile=imgfileurl
else
set xml_http=server.createobject("microsoft.xmlhttp")
xml_http.open "get",imgfileurl,false
xml_http.send
imgbody=xml_http.responsebody
set xml_http=nothing
serverpath=server.mappath(savepath)
set filefolder=server.createobject("scripting.filesystemobject")
if filefolder.folderexists(serverpath)=false then
filefolder.createfolder(serverpath)
end if
randomize
savepath=savepath"/"year(now())month(now())day(now())hour(now())minute(now())int(10*rnd)imgfiletype
set adodbs=server.createobject("adodb.stream")
adodbs.open
adodbs.type=1
adodbs.write imgbody
adodbs.savetofile(server.mappath(savepath))'保存到本地
adodbs.seteos
set adodbs=nothing
if filefolder.fileexists(server.mappath(savepath))=false then '如果保存成功,即返回遠程地址,只作遠程連接,避免一些防盜連網(wǎng)站不能保存
saveimgfile=imgfileurl
else
savepath=replace(savepath,"../","")
saveimgfile=savepath
end if
set filefolder=nothing
end if
end function

二、打開admin/admin_pic.asp文件
1、找到:添加圖片過程中的 pic_pic=checksql("縮略圖片地址",request.form("pic"),1,100)?。ù蟾旁诘?68行)在下面插入代碼:

if left(pic_url,7)="http://" and request.form("save")="true" then
pic_url=saveimgfile(pic_url)
pic_pic=pic_url
end if
  再找到:input type="submit" name="Submit" value="確定新增"> (大概在第481行)插入以下代碼:

   input type="checkbox" name="save" value="true">同時保存遠程圖片

2、在編輯圖片過程(editpic)中的相同地方添加相應(yīng)的代碼即可。

ok,完工

希望大家能舉一返回,其它用到圖片的地方也是一樣的調(diào)用方法。

歡迎光臨本站:http://www.4fnet.com.cn

標(biāo)簽:重慶 內(nèi)江 懷化 成都 麗江 天津 公主嶺 臺灣

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《保存遠程圖片函數(shù)修改正版》,本文關(guān)鍵詞  保存,遠程,圖片,函數(shù),修改,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《保存遠程圖片函數(shù)修改正版》相關(guān)的同類信息!
  • 本頁收集關(guān)于保存遠程圖片函數(shù)修改正版的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章