正文

今天早上我发了一篇利用百度短网址API生成短网址的教程和代码,然后在CSDN发现了另一个更好的生成百度短网址方案,于是就想转发过来分享给小伙伴们,也可以和我上一篇文章的版本进行一下对比,反正我是觉得它的比较快速方便,设计逻辑也很精密,下面是代码部分。

PHP代码

<?php
function send_post($url, $post_data) {
    $postdata = http_build_query($post_data);
    $options = array(
        'http' => array(
            'method' => 'POST',
            'header' => 'Content-type:application/x-www-form-urlencoded',
            'content' => $postdata,
            'timeout' => 15 * 60
        )  
    );  
    $context = stream_context_create($options);  
    $result = file_get_contents($url, false, $context);  
    return $result;  
}
$post_data = array(
    'url' => 'URL'
);
$json_data =  send_post('http://dwz.cn/create.php', $post_data);
$arr = json_decode($json_data,true);
echo $arr['tinyurl'];
?>

如果觉得我的文章对你有用,请随意赞赏