私のウェブサイトで bit.ly を使用しようとしています。私がこれを行うとき:
$short_url = json_decode(file_get_contents("http://api.bit.ly/v3/shorten?login=myLogin&apiKey=myApiKey&longUrl=".urlencode("http://example.com")."&format=json"))->data->url;
それは正常に動作します。
ただし、リンクを変数に配置しようとすると。
$link = 'http://example.com';
$short_url = json_decode(file_get_contents("http://api.bit.ly/v3/shorten?login=myLogin&apiKey=myApiKey&longUrl=".urlencode(**$link**)."&format=json"))->data->url;
それは動作しません。どんな助けでも大歓迎です。