代码拉取完成,页面将自动刷新
<?php
$longUrl=trim($_POST['url']);
$type=trim($_POST['type']);
//如果没有网址自动加上 http://
if(stripos($longUrl, '://')===false){
$longUrl='http://'.$longUrl;
}
// $longUrl='http://www.zzblo.com';
// $type='126.am';
include "TinyUrl.class.php";
$tu=new TinyUrl();
$tu->url=$longUrl;
switch ($type){
case 't.cn':
$tinyurl=$tu->createtcn();
break;
case 'dwz.cn':
$tinyurl=$tu->createDwz();
break;
case '126.am':
$tinyurl=$tu->create126am();
break;
case 'is.gd':
$tinyurl=$tu->createisgd();
break;
default:
$tinyurl=$tu->createtcn();
break;
}
if(!$tinyurl){
responseMesg(0,$tu->error);
}else{
responseMesg(1,'成功',$tinyurl);
}
//返回json信息
function responseMesg($code=0,$message,$data=null){
$arr=array();
$arr['code']=$code;
$arr['message']=$message;
$arr['data']=$data;
echo json_encode($arr);
//结束
exit();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。