PHP压缩zip文件并通过curl上传
class test{
//curl上传
function testPost(){
$url = "http://liling.gov.gsp365.cn/Api/Upload/postFile";
$file = 'D:\phpStudy\WWW\testcurl\json.zip';
$data = array(
'username' => 'test',
'pwd' => '123456',
'uploadFile' => new CurlFile($file)
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
}
//压缩文件
function addFileToZip($path,$zip){
$handler=opendir($path); //打开当前文件夹由$path指定。
while(($filename=readdir($handler))!==false){
if($filename != "." && $filename != ".."){//文件夹文件名字为'.'和‘..’,不要对他们进行操作
if(is_dir($path."/".$filename)){// 如果读取的某个对象是文件夹,则递归
$this->addFileToZip($path."/".$filename, $zip);
}else{ //将文件加入zip对象
if($filename=='json.json'||$filename=='json2.json'||$filename=='json3.json')
$zip->addFile($filename);
}
}
}
@closedir($path);
$this->testPost();
}
//调用addFileToZip方法
function addZip(){
$zip=new ZipArchive();
if($zip->open('json.zip', ZipArchive::OVERWRITE)=== TRUE){
$this->addFileToZip('./', $zip); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法
$zip->close(); //关闭处理的zip文件
}
}
//从数据库查询数据并存储成json文件
function jsonData(){
$pdo = new PDO("mysql:host=localhost;dbname=json","root","root");
$rs = $pdo -> query("select * from drugin");
while($row = $rs -> fetch(PDO::FETCH_ASSOC)){
$res[] =$row;
}
$data = eval('return '.iconv('gbk','utf-8',var_export($res,true)).';');
$phpjson = json_encode($data,JSON_UNESCAPED_UNICODE);
$files = "json.json";
file_put_contents($files,$phpjson);
$this->addZip();
}
}
$mytest=new test();
$mytest->jsonData();
?>