Home >Backend Development >PHP Tutorial >关于php上传文件的问题

关于php上传文件的问题

WBOY
WBOYOriginal
2016-06-23 14:14:52765browse

PHP 传文件

服务器端有一个Php写的上传文件的页面  是负责接收文件的

现在我想实现通过C写一个程序上传文件到这个服务器。

应该怎么写呢?

谢谢!!!


回复讨论(解决方案)

print_r($_FILES);
echo file_get_contents('php://input');
哪个有正确的内容就用哪个

print_r($_FILES);
echo file_get_contents('php://input');
哪个有正确的内容就用哪个

不是很懂,  我对Php不怎么了解

能不能给我一个C语言写的上传文件的例子呢?

先定义上传的路径,然后定义你上传的文件的类型、大小

先定义上传的路径,然后定义你上传的文件的类型、大小

谢谢哈  你的这句话给我灵感。 搞定了!

看来楼主对C语言很熟。其实这个需求用C的性能比PHP高不了很多。

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