1

私は自分のウェブサイトにこのスクリプトhttps://github.com/briancray/PHP-URL-Shortenerを使用しようとしています。Readme では、ここでこれを説明しています

PHP を使用してプログラムで URL を短縮するには、次のコードを使用します。

$shortenedurl = file_get_contents('http://yourdomain.com/shorten.php?longurl=' . urlencode('http://' . $_SERVER['HTTP_HOST']  . '/' . $_SERVER['REQUEST_URI']));

このコードをウェブサイトの任意のページに追加すると、実際のサイト リンクが短くなるはずです。しかし、それは私にリンクを表示せず、それを短くします。

4

1 に答える 1

1

やっている

$shortenedurl = file_get_contents('http://yourdomain.com/shorten.php?longurl=' . urlencode('http://' . $_SERVER['HTTP_HOST']  . '/' . $_SERVER['REQUEST_URI']));

それを短くして変数として保存するだけです。表示するには、 を使用して変数の内容を表示する必要がありますecho。これを試して:

$shortenedurl = file_get_contents('http://yourdomain.com/shorten.php?longurl=' . urlencode('http://' . $_SERVER['HTTP_HOST']  . '/' . $_SERVER['REQUEST_URI']));
echo $shortenedurl;
于 2012-12-09T14:02:52.850 に答える