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;
? >
http://www.bkjia.com/PHPjc/328176.htmlwww.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...