curl 上传文件 接收的地方$_FILES为空
程序员文章站
2023-12-26 23:30:21
...
发送的代码(完全是官方的示例)
'Foo', 'file' => '@/home/vagrant/test.png');
curl_setopt($ch, CURLOPT_URL, 'http://localhost/test/curl/load_file.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
?>
接收代码(也是官方的)
运行结果
php -f demo.php
Array
(
[name] => Foo
[file] => @/home/vagrant/test.png
)
Array
(
)
本来准备贴php.ini配置的,但是没找到上传地方。请各位先看看,需要哪些配置我尽快贴出来。
curl_setopt($ch, CURLOPT_VERBOSE, TRUE);我也加过,内容打印出来视乎帮助不大。
回复内容:
发送的代码(完全是官方的示例)
'Foo', 'file' => '@/home/vagrant/test.png');
curl_setopt($ch, CURLOPT_URL, 'http://localhost/test/curl/load_file.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
?>
接收代码(也是官方的)
运行结果
php -f demo.php
Array
(
[name] => Foo
[file] => @/home/vagrant/test.png
)
Array
(
)
本来准备贴php.ini配置的,但是没找到上传地方。请各位先看看,需要哪些配置我尽快贴出来。
curl_setopt($ch, CURLOPT_VERBOSE, TRUE);我也加过,内容打印出来视乎帮助不大。
$ch = curl_init();
$data = array('name' => 'Foo', 'file' => '@/home/vagrant/test.png');
curl_setopt($ch, CURLOPT_URL, 'http://localhost/test/curl/load_file.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false); // 5.6 给改成 true了, 弄回去
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
?>
在sf搜到的: 考虑 PHP 5.0~5.6 各版本兼容性的 cURL 文件上传
看了感觉很不错
推荐阅读
-
curl 上传文件 接收的地方$_FILES为空
-
PHP使用curl模拟post上传及接收文件的方法
-
PHP上传文件时文件过大$_FILES为空的解决方法
-
PHP使用curl模拟post上传及接收文件的方法_PHP
-
javascript - ajax上传文件后台使用$_files接受为空
-
PHP使用curl模拟post上传及接收文件的方法_PHP
-
curl 上传文件 接收的地方$_FILES为空
-
post - 如何用curl命令上传文件到制定的目录?后台用php程序来接收,apache httpd做服务器
-
PHP上传文件时文件过大$_FILES为空的解决方法
-
PHP上传文件时文件过大$_FILES为空的解决方法_PHP