请教用Curl 在php 里面模拟表单提交 文本+文件的写法
1个回答
2017-03-10 · 知道合伙人互联网行家
关注
展开全部
我的博客《PHP cURL实现模拟登录与采集使用方法详解教程》已经有了很多示例,
请直接搜索打开文章查看。
<?php
// 注: PHP 5.5.0起,文件上传建议使用CURLFile代替@
// 多文件上传
$data = array(
'author' => 'Zjmainstay',
'input_file[0]' => new CURLFile('d:/1.txt', 'text/plain', 'testfile.txt'),
'input_file[1]' => new CURLFile('d:/2.txt', 'text/plain'),
'input_file[2]' => new CURLFile('d:/3.txt', 'text/plain'),
);
$url = '这里省略链接';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询