加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
expand.php 371 Bytes
一键复制 编辑 原始数据 按行查看 历史
cqpu 提交于 2019-09-16 20:44 . v1.0
<?php
$shortUrl=trim($_POST['url']);
$headers = get_headers($shortUrl, TRUE);
$longUrl=$headers['Location'];
responseMesg(1,'success',$longUrl);
//返回json信息
function responseMesg($code=0,$message,$data=null){
$arr=array();
$arr['code']=$code;
$arr['message']=$message;
$arr['data']=$data;
echo json_encode($arr);
//结束
exit();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化