Home  >  Article  >  Backend Development  >  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
WBOYOriginal
2016-07-21 14:59:08855browse

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...
Statement:
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