1

ここのビギナー、人々。誰でも解決策を提案できますか?ユーザーがテキストを入力しました。まず、テキストに URL があるかどうかを確認します。

 $post = preg_replace('/https?:\/\/[\w\-\.!~?&+\*\'"(),\/]+/','<a class="post_link"          
 href="$0">$0</a>',$post);

その後、その URL を取得し、変数 ($url) としてこの関数に入れる必要があります。

 $short=make_bitly_url('$url','o_6sgltp5sq4as','R_f5212f1asdads1cee780eed00d2f1bd2fd794f','xml');

最後に、URL とユーザーのテキストの両方をエコーし​​ます。アイデアや批評をよろしくお願いします。

私はそのようなことを試しました:

 $post = preg_replace('/https?:\/\/[\w\-\.!~?&+\*\'"(),\/]+/e',$url,$post){
 $shorten = make_bitly_url($url,'o_6sgltpmm5sq4','R_f5212f11cee780ekked00d2f1bd2fd794f','json');
 return '<a class="post_link" href="$shorten">$shorten</a>';
 };

しかし、私にとってさえ、それはある種のナンセンスに見えます。

4

2 に答える 2

1

PHP から bit.ly API を使用する方法は次のとおりです。

/* make a URL small */
function make_bitly_url($url,$login,$appkey,$format = 'xml',$version = '2.0.1')
{
    //create the URL
    $bitly = 'http://api.bit.ly/shorten?version='.$version.'&longUrl='.urlencode($url).'&login='.$login.'&apiKey='.$appkey.'&format='.$format;

    //get the url
    //could also use cURL here
    $response = file_get_contents($bitly);

    //parse depending on desired format
    if(strtolower($format) == 'json')
    {
        $json = @json_decode($response,true);
        return $json['results'][$url]['shortUrl'];
    }
    else //xml
    {
        $xml = simplexml_load_string($response);
        return 'http://bit.ly/'.$xml->results->nodeKeyVal->hash;
    }
}

/* usage */
$short = make_bitly_url('http://davidwalsh.name','davidwalshblog','R_96acc320c5c423e4f5192e006ff24980','json');
echo 'The short URL is:  '.$short; 

// returns:  http://bit.ly/11Owun

出典: David Walsh の記事


ただし、独自の URL 短縮システム (bit.ly に似ていて、驚くほど簡単) を作成したい場合は、その方法に関するPHPacademyの 8 部構成のチュートリアルを次に示します。

難易度:初級・中級

各動画は約10分です。

パート 1 パート 2 パート 3 パート 4 パート 5 パート 6 パート 7 パート 8

于 2013-08-21T21:29:37.460 に答える