如何从用户输入文本创建有点缩短的URL?

时间:2013-08-21 21:21:36

标签: php url hyperlink

人们,在这里打招呼。任何人都可以提出任何解决方案吗?我有一个用户输入文本。 首先,我检查文本是否有任何网址:

 $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');

最后,回显网址和用户的文字。提前感谢您的想法和批评。

我尝试过这样的事情:

 $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>';
 };

但即便对我来说,这看起来有些废话。

2 个答案:

答案 0 :(得分: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

Source: David Walsh article


但是,如果你想创建自己的URL缩短系统(类似于bit.ly - 并且非常容易做到),这里有一个由PHPacademy组成的关于如何做到这一点的8部分教程:< / p>

难度级别:初级/中级

每个视频大约十分钟。

Part 1 Part 2 Part 3 Part 4 Part 5 Part 6 Part 7 Part 8

答案 1 :(得分:1)

有点可用的API。你应该看看API Documentation