Home  >  Article  >  Backend Development  >  Briefly describe how PHP uses fsockopen GET/POST to submit forms and upload files.

Briefly describe how PHP uses fsockopen GET/POST to submit forms and upload files.

巴扎黑
巴扎黑Original
2017-08-13 13:39:371194browse

This article mainly introduces in detail how php uses fsockopen GET/POST to submit forms and upload files. It has certain reference value. Interested friends can refer to it

php uses fsockopen GET/ POST to submit the form and upload the file, the specific content is as follows

1.GET

get.php


<?php 
$host = &#39;demo.fdipzone.com&#39;; 
$port = 80; 
$errno = &#39;&#39;; 
$errstr = &#39;&#39;; 
$timeout = 30; 
$url = &#39;/socket/getapi.php&#39;; 
 
$param = array( 
  &#39;name&#39; => &#39;fdipzone&#39;, 
  &#39;gender&#39; => &#39;man&#39; 
); 
 
$url = $url.&#39;?&#39;.http_build_query($param); 
 
// create connect 
$fp = fsockopen($host, $port, $errno, $errstr, $timeout); 
 
if(!$fp){ 
  return false; 
} 
 
// send request 
$out = "GET ${url} HTTP/1.1\r\n"; 
$out .= "Host: ${host}\r\n"; 
$out .= "Connection:close\r\n\r\n"; 
 
fputs($fp, $out); 
 
// get response 
$response = &#39;&#39;; 
while($row=fread($fp, 4096)){ 
  $response .= $row; 
} 
 
fclose($fp); 
 
$pos = strpos($response, "\r\n\r\n"); 
$response = substr($response, $pos+4); 
 
echo $response; 
?>

getapi.php


<?php 
$name = $_GET[&#39;name&#39;]; 
$gender = $_GET[&#39;gender&#39;]; 
 
echo &#39;name=&#39;.$name.&#39;<br>&#39;; 
echo &#39;gender=&#39;.$gender; 
?>

2.POST

post.php


<?php 
$host = &#39;demo.fdipzone.com&#39;; 
$port = 80; 
$errno = &#39;&#39;; 
$errstr = &#39;&#39;; 
$timeout = 30; 
$url = &#39;/socket/postapi.php&#39;; 
 
$param = array( 
  &#39;name&#39; => &#39;fdipzone&#39;, 
  &#39;gender&#39; => &#39;man&#39;, 
  &#39;photo&#39; => file_get_contents(&#39;photo.jpg&#39;) 
); 
 
$data = http_build_query($param); 
 
// create connect 
$fp = fsockopen($host, $port, $errno, $errstr, $timeout); 
 
if(!$fp){ 
  return false; 
} 
 
// send request 
$out = "POST ${url} HTTP/1.1\r\n"; 
$out .= "Host:${host}\r\n"; 
$out .= "Content-type:application/x-www-form-urlencoded\r\n"; 
$out .= "Content-length:".strlen($data)."\r\n"; 
$out .= "Connection:close\r\n\r\n"; 
$out .= "${data}"; 
 
fputs($fp, $out); 
 
// get response 
$response = &#39;&#39;; 
while($row=fread($fp, 4096)){ 
  $response .= $row; 
} 
 
fclose($fp); 
 
$pos = strpos($response, "\r\n\r\n"); 
$response = substr($response, $pos+4); 
 
echo $response; 
?>

postapi.php


<?php 
define(&#39;UPLOAD_PATH&#39;, dirname(__FILE__).&#39;/upload&#39;); 
 
$name = $_POST[&#39;name&#39;]; 
$gender = $_POST[&#39;gender&#39;]; 
$photo = $_POST[&#39;photo&#39;]; 
 
$filename = time().&#39;.jpg&#39;; 
file_put_contents(UPLOAD_PATH.&#39;/&#39;.$filename, $photo, true); 
 
echo &#39;name=&#39;.$name.&#39;<br>&#39;; 
echo &#39;gender=&#39;.$gender.&#39;<br>&#39;; 
echo &#39;<img src="upload/&#39;.$filename.&#39;">&#39;; 
?>

3. Upload file

file.php


<?php 
$host = &#39;demo.fdipzone.com&#39;; 
$port = 80; 
$errno = &#39;&#39;; 
$errstr = &#39;&#39;; 
$timeout = 30; 
$url = &#39;/socket/fileapi.php&#39;; 
 
$form_data = array( 
  &#39;name&#39; => &#39;fdipzone&#39;, 
  &#39;gender&#39; => &#39;man&#39;, 
); 
 
$file_data = array( 
  array( 
    &#39;name&#39; => &#39;photo&#39;, 
    &#39;filename&#39; => &#39;photo.jpg&#39;, 
    &#39;path&#39; =>&#39;photo.jpg&#39; 
  ) 
); 
 
// create connect 
$fp = fsockopen($host, $port, $errno, $errstr, $timeout); 
 
if(!$fp){ 
  return false; 
} 
 
// send request 
srand((double)microtime()*1000000); 
$boundary = "---------------------------".substr(md5(rand(0,32000)),0,10); 
 
$data = "--$boundary\r\n"; 
 
// form data 
foreach($form_data as $key=>$val){ 
  $data .= "Content-Disposition: form-data; name=\"".$key."\"\r\n"; 
  $data .= "Content-type:text/plain\r\n\r\n"; 
  $data .= rawurlencode($val)."\r\n"; 
  $data .= "--$boundary\r\n"; 
} 
 
// file data 
foreach($file_data as $file){ 
  $data .= "Content-Disposition: form-data; name=\"".$file[&#39;name&#39;]."\"; filename=\"".$file[&#39;filename&#39;]."\"\r\n"; 
  $data .= "Content-Type: ".mime_content_type($file[&#39;path&#39;])."\r\n\r\n"; 
  $data .= implode("",file($file[&#39;path&#39;]))."\r\n"; 
  $data .= "--$boundary\r\n"; 
} 
 
$data .="--\r\n\r\n"; 
 
$out = "POST ${url} HTTP/1.1\r\n"; 
$out .= "Host:${host}\r\n"; 
$out .= "Content-type:multipart/form-data; boundary=$boundary\r\n"; // multipart/form-data 
$out .= "Content-length:".strlen($data)."\r\n"; 
$out .= "Connection:close\r\n\r\n"; 
$out .= "${data}"; 
 
fputs($fp, $out); 
 
// get response 
$response = &#39;&#39;; 
while($row=fread($fp, 4096)){ 
  $response .= $row; 
} 
 
fclose($fp); 
 
$pos = strpos($response, "\r\n\r\n"); 
$response = substr($response, $pos+4); 
 
echo $response; 
?>

fileapi.php


<?php 
define(&#39;UPLOAD_PATH&#39;, dirname(__FILE__).&#39;/upload&#39;); 
 
$name = $_POST[&#39;name&#39;]; 
$gender = $_POST[&#39;gender&#39;]; 
 
$filename = time().&#39;.jpg&#39;; 
 
echo &#39;name=&#39;.$name.&#39;<br>&#39;; 
echo &#39;gender=&#39;.$gender.&#39;<br>&#39;; 
if(move_uploaded_file($_FILES[&#39;photo&#39;][&#39;tmp_name&#39;], UPLOAD_PATH.&#39;/&#39;.$filename)){ 
  echo &#39;<img src="upload/&#39;.$filename.&#39;">&#39;; 
} 
?>

The above is the detailed content of Briefly describe how PHP uses fsockopen GET/POST to submit forms and upload files.. For more information, please follow other related articles on the PHP Chinese website!

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