Heim  >  Artikel  >  Backend-Entwicklung  >  php接收post文件有关问题

php接收post文件有关问题

WBOY
WBOYOriginal
2016-06-13 11:26:39968Durchsuche

php接收post文件问题
vc客户端使用http post abc.txt文件给php server端,server端收到的abc.txt文件是空的,是不是php://input问题呢,请高手指教。谢谢!

vc客户端:
Content-Disposition: form-data; name="upload"; filename="abc.txt"
Content-Type: text/plain


php server端:
$input = file_get_contents('php://input');
file_put_contents('abc.txt',$input);
?>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn