当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 2 Fork 2

Xpesir/税控盘维护费电子发票下载系统
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
down.php 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xpesir 提交于 2018-07-03 10:12 . 优化用户体验和查询速度
<?php
require 'config.php';
if ( isset($_GET['FPID']) == false || isset($_GET['GSM']) == false || eregi("^[a-zA-Z0-9]{32}$",$_GET['FPID'] )==false)
{
//输出腾讯404
echo"<script type='text/javascript' src='//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js' charset='utf-8' homePageUrl='http://gd.baiwang.com.cn/' homePageName='广东百望九赋电子有限公司'></script>";
}
else
{
$GSM = $_GET['GSM'];
$FPID = $_GET['FPID'];
$path = "http://".$URL."/qyfpgl/downOrqueryFP.do?FPID=".$FPID."&FLAG=false";
$file_name=$GSM.".pdf";
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename='.$file_name);
ob_end_clean();
readfile($path);
exit;
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/Xpesir/Skpmaintenance.git
[email protected]:Xpesir/Skpmaintenance.git
Xpesir
Skpmaintenance
税控盘维护费电子发票下载系统
master

搜索帮助