在 PHP 中使用 cURL 上传文件
要使用 cURL 在 PHP 中上传文件,请按照以下步骤操作:
1。创建 cURL 文件对象
对于 PHP 5.5 及以上版本,使用curl_file_create 创建 cURL 文件对象:
if (function_exists('curl_file_create')) { // php 5.5+ $cFile = curl_file_create($file_name_with_full_path); }
对于早期 PHP 版本,使用:
$cFile = '@' . realpath($file_name_with_full_path);
2.准备 POST 数据
将文件对象和任何其他表单数据打包在 POST 数组中:
$post = array('extra_info' => '123456', 'file_contents' => $cFile);
3.初始化 cURL 会话
$ch = curl_init();
4.设置 cURL 选项
配置 cURL 会话选项:
curl_setopt($ch, CURLOPT_URL, $target_url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
5.执行请求
使用 cURL 发送文件:
$result = curl_exec ($ch);
6.关闭 cURL 会话
curl_close ($ch);
PHP 5.5 及更高版本的重要注意事项:
提供的示例中使用了已弃用的文件处理方法。对于当前的做法,请参阅 PHP 文档:https://wiki.php.net/rfc/curl-file-upload
以上是如何在 PHP 中使用 cURL 上传文件?的详细内容。更多信息请关注PHP中文网其他相关文章!