php中網(wǎng)頁添加到桌面快捷方式方法
來源:程序員人生 發(fā)布時間:2013-10-25 19:52:22 閱讀次數(shù):2756次
我們經(jīng)常會在網(wǎng)站中看到可以直接把網(wǎng)站以快捷方式保存到自己的電腦中,然后只要點擊就可以實現(xiàn)進入網(wǎng)了,那么php中怎么把網(wǎng)頁添加到桌面快捷方式呢,用PHP代碼來實現(xiàn)有點不可思議,雖然我們可以直接在桌面來實現(xiàn),但有的時候WEB應(yīng)用需要用代碼來實現(xiàn)。
功能簡單,直接上代碼:
- $Shortcut = "
- [InternetShortcut]
- URL=http:
- IDList=IconFile=http:
- Prop3=19,2";
- header("Content-Type: application/octet-stream");
- header("Content-Disposition: attachment; filename=phpfensi.url");
- echo $Shortcut;
下面還提供一種方法,代碼如下:
- <?php
- $Shortcut = "[InternetShortcut]
- URL=http:
- IDList=
- [{000214A0-0000-0000-C000-000000000046}]
- Prop3=19,2
- ";
- Header("Content-type: application/octet-stream");
- header("Content-Disposition: attachment; filename=11cn.url;");
- echo $Shortcut;
- ?>
生活不易,碼農(nóng)辛苦
如果您覺得本網(wǎng)站對您的學(xué)習(xí)有所幫助,可以手機掃描二維碼進行捐贈