使用“file_get_contents”上传 php 文件到服务器
是否可以像这样以相同的方式将文件发送到服务器:
$file = 'myfile.txt';
or
$file = file_get_contents(./myfile.txt);
...
$postdata = http_build_query( array(
'var1' => 'some content',
'var2' => $file
) );
$opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) );
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);
谢谢
is it possible to send a file to a server at the same way like this:
$file = 'myfile.txt';
or
$file = file_get_contents(./myfile.txt);
...
$postdata = http_build_query( array(
'var1' => 'some content',
'var2' => $file
) );
$opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) );
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用 cURL 而使用 Stream?就这么简单:
Why don't you use cURL instead of streams? It's so easy:
是的,但这是一个乏味的过程。如果您想发布某些内容,请使用 cURL 或使用普通的
$_FILE
方法。Yes, but its a tedious process. If you want to post something use cURL or with the normal
$_FILE
method.