PHP simulates post to send data
Release: 2016-07-25 08:45:12
Original
1045 people have browsed it
- PHP
- $flag = 0;
- //Data to be posted
- $argv = array(
- 'var1'=>'abc',
- 'var2'=>'How are you');
- //Construct post String
- foreach ($argv as $key=>$value) {
- if ($flag!=0) {
- $params .= "&";
- $flag = 1;
- }
- $params.= $ key."="; $params.= urlencode($value);
- $flag = 1;
- }
- $length = strlen($params);
- //Create a socket connection
- $fp = fsockopen("127.0.0.1 ",80,$errno,$errstr,10) or exit($errstr."--->".$errno);
- //Construct the header of the post request
- $header = "POST /mobile/try.php HTTP/1.1";
- $header .= "Host:127.0.0.1";
- $header .= "Referer:/mobile/sendpost.php";
- $header .= "Content-Type: application/x-www- form-urlencoded";
- $header .= "Content-Length: ".$length."";
- $header .= "Connection: Close";
- //Add the post string
- $header .= $params. "";
- //Send post data
- fputs($fp,$header);
- $inheader = 1;
- while (!feof($fp)) {
- $line = fgets($fp,1024); / /Remove the header of the request packet and only display the return data of the page
- if ($inheader && ($line == "n" || $line == "")) {
- $inheader = 0;
- }
- if ($inheader == 0) {
- echo $line;
- }
- }
- fclose($fp);
- ?>
Copy code
|
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31