Home > php教程 > php手册 > PHP创建桌面快捷方式实例

PHP创建桌面快捷方式实例

WBOY
Release: 2016-05-25 16:49:45
Original
2402 people have browsed it

要利用php创建桌面快捷方式我们需要借助于header,InternetShortcut及一些我看不懂的代码。

方法:新建一个php文件,然后把下面的代码扔进去,保存为比如shortcut.php,放在网站跟目录,代码如下:

$shortCut = "[InternetShortcut]  
URL=http://www.phprm.com  
IDList=  
[{000214A0-0000-0000-C000-000000000046}]  
Prop3=19,2  
";  
Header("Content-type: application/octet-stream");  
header("Content-Disposition: attachment; filename=hzhuti.url;");  
echo $shortCut;
Copy after login

首先确保的网站根目录有favicon.ico文件,修改代码中的网址(URL)和保存的文件名(filename)。注:保存时的编码不要转成UTF-8,因各种浏览器的差异,有的会造成保存时文件名乱码。

访问此页面时,提示下载.url文件,保存在本地就是一个快捷方式,记得把上面代码的URL地址改为自己的,后面的filename也改为自己网站的名字。

教程网址:

欢迎收藏∩_∩但请保留本文链接。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template