文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

PHP cURL 文件上传

2024-02-27 21:20

关注

本篇文章将指导如何使用 cURL 和 CURLFile 类将图像文件发送到服务器。

这个想法是将图像文件从一个页面发布到另一个页面上的另一个页面。


PHP 中的 cURLFile 上传方法

例如,我们将图像发布到 index.php 页面,然后在 curl 的帮助下发布到 curl.php 页面。

我们通过使用 curl 和 CURLFile 类功能来做到这一点。让我们以有效的语法查看函数参数。


//create curl file
if (function_exists('curl_file_create')) {

//determine file path 
  $tmp_file = curl_file_create($file_name_with_full_path);
} else { // 
  $tmp_file = '@' . realpath($file_name_with_full_path);
}
//store data in an array index
$data = array('extra_info' => '123456789','file_contents'=> $tmp_file);
$init = curl_init();
//function parameteres
curl_setopt($init, CURLOPT_URL,$url);
curl_setopt($init, CURLOPT_POST,1);
curl_setopt($init, CURLOPT_POSTFIELDS, $data);
$res=curl_exec ($init);
curl_close ($init);

上面的示例可以取决于用户定义的条件,因为 URL 可以指向任何服务器位置。

但是,我们现在将创建一个可用于在服务器之间移动文件的工作示例。它将允许你阐明如何使用 curl 文件类。


<!DOCTYPE html>
<html>
<body>

<form action="index.php" method="post" enctype="multipart/form-data" align="center">
<input type="file" name="image" />
<input type="submit" value= "Submit">
</form>
</body>
</html>

通常情况下,HTML 表单收集输入文件名并与 php.ini 中的 $_POST 或 $_REQUEST 变量一起发送。

但是,借助 curl 文件功能,我们可以将其重定向到不同的服务器。


PHP cURL 文件上传工作示例

index.php


<?php
    
if (isset($_FILES['image']['tmp_name'])){
	//create a handler for curl function 
$curl = curl_init(); //initialzie cURL session

//The CURLFile class 
$cfile = new CURLFile($_FILES['image']['tmp_name'], $_FILES['image']['type'], $_FILES['image']['name']);

//use array to post data to different server or within localhost 
$data = array ("myimage"=>$cfile);

//this url can be directed to any server location
//for the sake of this demo, we are using localhost directory to upload images in the upload folder

//Sets an option on the given cURL session handle
curl_setopt($curl, CURLOPT_URL, "http://localhost:7882/curl/curl.php"); 
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data); 
	//assign  execute curl to a response varible
	$result = curl_exec($curl);
	//check if the response varible is true 
	if($result == true){
	
		echo "Your image has been uploaded successfully";
	}

else {
	// curl error returns a string comprising of error for the current session
	echo "Error!" . curl_error($curl);
}
}
?>

输出:

PHP 卷曲输出

output.gif 图像显示文件目录以及文件如何从 index.php 移动到 curl.php。然后移动到上传文件夹。

Curl.php 代码:


<?php
//determine the array index 
if(isset($_FILES['myimage']['tmp_name'])){
//set the path in the path variable
	$path = "uploads/" . $_FILES['myimage']['name'];
	//move the file to the path 
	move_uploaded_file($_FILES['myimage']['tmp_name'], $path); 
?>

结论

我们已经展示了文件和我们如何从一台服务器到另一台服务器执行 CURLFile 类的输出。

用户可以在需要在不同服务器位置上传文件的各种情况下使用此方法。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯