Home Backend Development PHP Tutorial PHP simulates post request to send file code

PHP simulates post request to send file code

Jul 25, 2016 am 08:42 AM

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:

  1. $params1 = "test";
  2. $params2 = "@".$absolute_path;//If it is a file, the parameter is "@"+ Absolute path
  3. $post_data = array(
  4. 'params1' => $params1,
  5. 'params2' => $params2,
  6. );
  7. function postData($url, $data){
  8. $ch = curl_init();
  9. $timeout = 300;
  10. curl_setopt($ch, CURLOPT_URL, $url); //Request address
  11. //curl_setopt($ch, CURLOPT_REFERER, $ip);//Construction source
  12. curl_setopt($ch, CURLOPT_POST, true ; When CURLOPT_RETURNTRANSFER is set to 1, $head has the return value of the request
  13. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); //Set the request timeout
  14. $handles = curl_exec($ch);
  15. curl_close($ch);
  16. return $ handles;
  17. }
  18. Copy code
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 when the code is placed on the centOS+Nginx server, it 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 again. 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',
    );
  1. curl_setopt( $ch, CURLOPT_HTTPHEADER, $header);
  2. Copy code

Set 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 official PHP website http://php.net/manual/en /class.curlfile.php. According to the official website’s practices, post requests were successful under win wamp and centos nginx. . 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:

  1. function postData($url, $data = array(), $data1 = array()){
  2. $header = array(
  3. 'Content-Type: multipart/form-data',
  4. );
  5. $ch = curl_init();
  6. curl_setopt ($ch, CURLOPT_URL, $url);
  7. curl_setopt( $ch, CURLOPT_HTTPHEADER, $header);
  8. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  9. curl_setopt ($ch , CURLOPT_CONNECTTIMEOUT,10);
  10. curl_setopt ($ch, CURLOPT_BINARYTRANSFER,true);
  11. //curl_setopt ($ch, CURLOPT_POSTFIELDS, $data);
  12. curl_custom_postfields($ch, $data, $data1);
  13. $dxycontent = curl_exec( $ch);
  14. curl_close($ch);
  15. return $dxycontent;
  16. }
  17. /**
  18. * For safe multipart POST request for PHP5.3 ~ PHP 5.4.
  19. *
  20. * @param resource $ch cURL resource
  21. * @param array $assoc "name => value"
  22. * @param array $files "name => path"
  23. * @return bool
  24. */
  25. function curl_custom_postfields($ch, array $assoc = array(), array $files = array() ) {
  26. // invalid characters for "name" and "filename"
  27. static $disallow = array("
  28. Parameter passing has no effect. If it is a file, add "@" before 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.
  29. php, post
Statement of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles