Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial php做服务器,接受客户端上传的文件,服务器是怎么接收的

php做服务器,接受客户端上传的文件,服务器是怎么接收的

Jun 23, 2016 pm 02:02 PM

我们用C++在本地写的客户端,然后想用PHP在服务器端写个程序把这个文件接受存储,是不是在服务器要写个监听程序,还是要怎么来把他们链接起来实现数据传输


回复讨论(解决方案)

用 post 方式加 multipart/form-data 头
php 会自动识别上传的文件

如果用 put 方式,则需在 平衡品端从 php://input 资源读取文件内容

用 post 方式加 multipart/form-data 头
php 会自动识别上传的文件

如果用 put 方式,则需在 平衡品端从 php://input 资源读取文件内容 能不能写几行具体的代码,PHP我也是刚开始学新手,谢谢了

if(isset($_FILES['上传时指定的变量名']['tmp_name')) {  move_uploaded_file($_FILES['上传时指定的变量名']['tmp_name'], '目标文件名');}else {  $s = file_get_contents('php://input');  if($s) {    file_put_contents('目标文件名', $s);  }}
Copy after login

用 post 方式加 multipart/form-data 头
php 会自动识别上传的文件

如果用 put 方式,则需在 平衡品端从 php://input 资源读取文件内容 我这里有个程序,我不懂人家这个

if($_SERVER["REQUEST_METHOD"]=="POST")
{
//上传最大文件的大小。
$MAX_SIZE = 20000000;
     echo $MAX_SIZE;
//设置允许的 Mime 类型.
$FILE_MIMES = array('image/jpeg','image/jpg','image/gif'
   ,'image/png','application/msword','text/plain','application/octet-stream','application/x-zip-compressed');

//设置允许的文件类型。请按照格式添加。
$FILE_EXTS  = array('.zip','.jpg','.png','.gif','.doc','.txt','.rar','zip');


/************************************************************
*     设置变量
************************************************************/
$site_name = $_SERVER['HTTP_HOST'];
$url_dir = "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
$url_this =  "http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];

$upload_dir = "files/";
$upload_url = $url_dir."/files/";
$message ="";

/************************************************************
*     创建上传目录
************************************************************/
if (!is_dir("files")) {
  if (!mkdir($upload_dir))
   die ("upload_files directory doesn't exist and creation failed");
  if (!chmod($upload_dir,0755))
   die ("change permission to 755 failed.");
   echo $upload_dir;
}

/************************************************************
*     用户请求进程,下面所有用到的 upfile 需要与VC客户端一致,可以批量替换。见HotpimUploadDlg.cpp第224行。
************************************************************/


if ($_FILES['upfile'])
{
  $resource = fopen("log.txt","a");
  fwrite($resource,date("Ymd h:i:s")."UPLOAD - $_SERVER[REMOTE_ADDR]"
.$_FILES['upfile']['name']." "
.$_FILES['upfile']['type']."\n");
  fclose($resource);

$file_type = $_FILES['upfile']['type'];
  $file_name = $_FILES['upfile']['name'];
  $file_ext = substr($file_name,strrpos($file_name,"."));

  //文件大小检查
  if ( $_FILES['upfile']['size'] > $MAX_SIZE)
 $message = "The file size is over 2MB.";
  //文件类型/扩展名检查
  else if (!in_array($file_type, $FILE_MIMES) && !in_array($file_ext, $FILE_EXTS) )
 $message = "Sorry, $file_name($file_type) is not allowed to be uploaded.";
  else
 $message = do_upload($upload_dir, $upload_url);
}

else if (!$_FILES['upfile']);
else
$message = "Invalid File Specified.";

}
function do_upload($upload_dir, $upload_url)
{
$temp_name = $_FILES['upfile']['tmp_name'];
$file_name = $_FILES['upfile']['name'];
$file_name = str_replace("\\","",$file_name);
$file_name = str_replace("'","",$file_name);
$file_path = $upload_dir.$file_name;

//文件名字检查
  if ( $file_name =="") {
   $message = "Invalid File Name Specified";
   return $message;
  }

  $result  =  move_uploaded_file($temp_name, $file_path);
  if (!chmod($file_path,0755))
$message = "change permission to 755 failed.";
  else
$message = ($result)?"$file_name uploaded successfully." :
"Somthing is wrong with uploading a file.";
  return $message;
}
?>

这个是标准的文件上传程序,建议去看看php手册就明白了。

建议看看手册 $_FILES 有说明有例子

嗯谢谢各位了,我继续去看看PHP手册

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

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

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles