请注意,本文编写于 2661 天前,最后修改于 1827 天前,其中某些信息可能已经过时。
正文
今天早上我发了一篇利用百度短网址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'];
?>