Home > Backend Development > PHP Tutorial > php 生成url桌面快捷方式解决方案

php 生成url桌面快捷方式解决方案

WBOY
Release: 2016-06-13 12:32:28
Original
1218 people have browsed it

php 生成url桌面快捷方式
麻烦各位大神,帮忙看看以下代码哪里错误。生成的快捷方式总是无法获取到url值

url.php

<? header('Content-Type: text/html; charset=utf-8');?><br />
<?<br />
//生成快捷方式<br />
$url=$_REQUEST['url'];<br />
$title=$_REQUEST['title'];<br />
$content = "[InternetShortcut]<br />
URL=".$url."<br />
IDList=[{000214A0-0000-0000-C000-000000000046}]<br />
HotKey=1626<br />
Prop3=19,2<br />
";<br />
<br />
Header("Content-type: application/octet-stream");<br />
header("Content-Disposition: attachment; filename=".$title.".url;");<br />
echo $content;<br />
?>
Copy after login


使用的网址:http://127.0.0.1/url.php?title=佛说&url=http://www.123.com
PHP

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template