網(wǎng)站地址保存到桌面快捷方式方法總結(jié) 包括有php,windows下的實(shí)現(xiàn)方法,有需要的朋友可參考一下本文章,
網(wǎng)站地址保存到桌面快捷方式方法總結(jié)電腦新手辦公/數(shù)碼
。windows系統(tǒng)中的做法
代碼如下復(fù)制代碼[InternetShortcut]
URL=http://www.111cn.net/
Modified=704A92F76804CA017A
IconIndex=137
IconFile=C:WINDOWSsystem32SHELL32.dll
HotKey=0
IDList=
[InternetShortcut.A]
[InternetShortcut.W]
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
將以下代碼直接保存為shortcut.php文件,點(diǎn)擊鏈接后即可下載網(wǎng)站圖標(biāo)快捷方式到桌面
不同系統(tǒng)可能會(huì)有不顯示ico圖標(biāo)的問題,請?jiān)囋囅旅娴拇a:
XML/HTML代碼
代碼如下復(fù)制代碼1.[DEFAULT]2.BASEURL=http://www.111cn.net/
3.[InternetShortcut]
4.URL=http://www.111cn.net/#shortcut
5.Modified=70BF4B88E372CC0124
6.IconFile=http://www.111cn.net//faviconbig.ico
7.IconIndex=1
上面的代碼
我在360里面不使用urlencode的話,得到的中文文件名會(huì)亂碼,而在火狐里面必須使用urldecode,使用urlencode也會(huì)導(dǎo)致文件名亂碼,這個(gè)問題先擱置一下,以后有空再研究,臨時(shí)用了下面的一個(gè)判斷瀏覽器類型來分別使用不同的方法解決了這個(gè)亂碼的問題
代碼如下復(fù)制代碼
$browser=strtolower(browser());
$filename='php程序員的筆記';
if($browser=='firefox'){
$filename=urldecode($filename);
}else{
$filename=urlencode($filename);
}
$url='http://www.phpernote.com/';
$Shortcuts='[InternetShortcut]
URL='.$url.'
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2';
Header('Content-type: application/octet-stream');
header('Content-Disposition: attachment; filename='.$filename.'.url;');
echo $Shortcuts;
function browser(){
$user_agent=$_SERVER['HTTP_USER_AGENT'];
if(false!==strpos($user_agent,'MSIE 9.0')){
return 'IE9';
}
if(false!==strpos($user_agent,'MSIE 8.0')){
return 'IE8';
}
if(false!==strpos($user_agent,'MSIE 7.0')){
return 'IE7';
}
if(false!==strpos($user_agent,'MSIE 6.0')){
return 'IE6';
}
if(false!==strpos($user_agent,'Firefox')){
return 'Firefox';
}
if(false!==strpos($user_agent,'Chrome')){
return 'Chrome';
}
if(false!==strpos($user_agent,'Safari')){
return 'Safari';
}
if(false!==strpos($user_agent,'Opera')){
return 'Opera';
}
if(false!==strpos($user_agent,'360SE')){
return '360SE';
}
}