ホームページ >バックエンド開発 >PHPチュートリアル >PHPでURLを生成するデスクトップショートカット

PHPでURLを生成するデスクトップショートカット

WBOY
WBOYオリジナル
2016-06-23 14:38:221188ブラウズ

次のコードのどこが間違っているのかを見つけるのを手伝ってください。生成されたショートカットは、URL 値

url.php

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


の取得に常に失敗します。使用される URL: http://127.0.0.1/url.php?title=佛说&url=http://www.123 。 com


ディスカッションへの返信 (解決策)

<?php $url=$_REQUEST['url'];$title=$_REQUEST['title'];$content = "[InternetShortcut]URL={$url}IDList=[{000214A0-0000-0000-C000-000000000046}]HotKey=1626Prop3=19,2";Header("Content-type: application/octet-stream");header("Content-Disposition: attachment; filename={$title}.url;");echo $content;?>

IconIndex=1 がありません

$url=$_REQUEST['url'];$title=$_REQUEST['title'];$content = "[InternetShortcut]URL={$url}IconIndex=1IDList=[{000214A0-0000-0000-C000-000000000046}]HotKey=1626Prop3=19,2";Header("Content-type: application/octet-stream");header("Content-Disposition: attachment; filename={$title}.url;");echo $content;

使用される URL: http://127.0.0.1/url.php?title=佛说&url=http://www .123 .com

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。