Home > Backend Development > PHP Tutorial > How to implement website saving shortcut in PHP to facilitate users to browse at any time_PHP tutorial

How to implement website saving shortcut in PHP to facilitate users to browse at any time_PHP tutorial

WBOY
Release: 2016-07-21 14:59:08
Original
893 people have browsed it

How to implement website saving shortcut in PHP? The following is a piece of PHP code. The following piece of code can implement a website saving shortcut in PHP so that users can browse it at any time.

Copy code The code is as follows:


$Shortcut = "[InternetShortcut]
URL=http://blog.csdn.net/lee_magnum/
IDList = [{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header(" Content-type: application/octet-stream"); ​​
header("Content-Disposition: attachment; filename=Menglong Station.url;");
echo $Shortcut;

? >

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/328176.htmlTechArticleHow does PHP implement a website saving shortcut? The following is a piece of PHP code. The following piece of code can implement a website saving shortcut in PHP so that users can browse it at any time. Copy the code The code is like...
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