search
HomeBackend DevelopmentPHP TutorialPHP simulates post request to send files_PHP tutorial

php simulates post request to send files

Due to the needs of the project, the local server needs to receive the data and then forward the data to another server, so a simulated post request is used to send the data. Of course, the data also includes file streams.

curl is one of the more commonly used methods in PHP. The general code is as follows:

$params1 = test;
$params2 = @.$absolute_path;//如果是文件 则参数为@+绝对路径
$post_data = array(  
	'params1' => $params1,  
	'params2' => $params2,
);
function postData($url, $data){      
	$ch = curl_init();      
	$timeout = 300;       
	curl_setopt($ch, CURLOPT_URL, $url);   //请求地址
	//curl_setopt($ch, CURLOPT_REFERER, $ip);//构造来路    
	curl_setopt($ch, CURLOPT_POST, true);  //post请求
	curl_setopt($ch, CURLOPT_BINARYTRANSFER,true);//二进制流    
	curl_setopt($ch, CURLOPT_POSTFIELDS, $data);      //数据
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  //当CURLOPT_RETURNTRANSFER设置为1时 $head 有请求的返回值    
	curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);    //设置请求超时时间  
	$handles = curl_exec($ch);      
	curl_close($ch);		
	return $handles;
}
The other party is a java server. I only know the interface, but I don't know how the other party handles file reception. The above method is successful in the win7 wamp environment, but putting the code on the centOS Nginx server fails. The returned message is that the file reception failed. After packet capture analysis, it was found that the format of the packets delivered by win7 wamp and the http packets delivered by centos nginx were different. Under normal circumstances, curl sets the content_type to multipart/form-data by default. On my machine, this is the case under win7 wamp, but under centos nginx, it is application/x-www-form-urlencoded. Of course, this may also be a server configuration problem, but I don't know where the problem is. Then I checked the PHP version. It was also PHP5.3.X, but there were slight differences. It does not rule out that it is a problem with the PHP version. Then add the code:

$header = array(
	'Content-Type: multipart/form-data',
);
curl_setopt( $ch, CURLOPT_HTTPHEADER, $header);
Set the header, but it is still invalid under centos. It's really a scam that I can't change the content-type.

Later, with the help of the technical director, I read a link on the PHP official website http://php.net/manual/en/class.curlfile.php, and followed the official website’s practices to post requests under win wamp and centos nginx. All worked. After reading the code carefully, I found that the method is to completely write the body part of the http request instead of using the part generated by curl itself. I have to admire it. The code is released below:

function postData($url, $data = array(), $data1 = array()){      
	$header = array(
		'Content-Type: multipart/form-data',
	);
	$ch = curl_init(); 
	curl_setopt ($ch, CURLOPT_URL, $url);
	curl_setopt( $ch, CURLOPT_HTTPHEADER, $header);
	curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
	curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT,10);
	curl_setopt ($ch, CURLOPT_BINARYTRANSFER,true); 
	//curl_setopt ($ch, CURLOPT_POSTFIELDS, $data);
	curl_custom_postfields($ch, $data, $data1);
	$dxycontent = curl_exec($ch);
	curl_close($ch);
	return $dxycontent;
}

/**
* For safe multipart POST request for PHP5.3 ~ PHP 5.4.
* 
* @param resource $ch cURL resource
* @param array $assoc name => value
* @param array $files name => path
* @return bool
*/
function curl_custom_postfields($ch, array $assoc = array(), array $files = array()) {	
	// invalid characters for name and filename
	static $disallow = array(, , 
, 
);
	
	// build normal parameters
	foreach ($assoc as $k => $v) {
		$k = str_replace($disallow, _, $k);
		$body[] = implode(
, array(
			Content-Disposition: form-data; name={$k},
			,
			filter_var($v), 
		));
	}
	
	// build file parameters
	foreach ($files as $k => $v) {
		switch (true) {
			case false === $v = realpath(filter_var($v)):
			case !is_file($v):
			case !is_readable($v):
				continue; // or return false, throw new InvalidArgumentException
		}
		$data = file_get_contents($v);
		$v = call_user_func(end, explode(DIRECTORY_SEPARATOR, $v));
		$k = str_replace($disallow, _, $k);
		$v = str_replace($disallow, _, $v);
		$body[] = implode(
, array(
			Content-Disposition: form-data; name={$k}; filename={$v},
			Content-Type: application/octet-stream,
			,
			$data, 
		));
	}
	
	// generate safe boundary 
	do {
		$boundary = --------------------- . md5(mt_rand() . microtime());
	} while (preg_grep(/{$boundary}/, $body));
	
	// add boundary for each parameters
	array_walk($body, function (&$part) use ($boundary) {
		$part = --{$boundary}
{$part};
	});
	
	// add final boundary
	$body[] = --{$boundary}--;
	$body[] = ;
	
	// set options
	return @curl_setopt_array($ch, array(
		CURLOPT_POST       => true,
		CURLOPT_POSTFIELDS => implode(
, $body),
		CURLOPT_HTTPHEADER => array(
			Expect: 100-continue,
			Content-Type: multipart/form-data; boundary={$boundary}, // change Content-Type
		),
	));
}
Parameter passing has no effect. If it is a file, @ precedes the absolute path. The only difference is to use different arrays to separate file data and ordinary data, and process them differently when simulating the body part of http. The file was finally uploaded successfully.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1043339.htmlTechArticlephp simulates post request to send files. Due to project needs, the local server needs to receive the data and then forward the data to another server. on a server, so you need to use simulated post requests to send data,...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool