我正在尝试使用 访问发布数据file_get_contents
,但是收到以下错误消息:
failed to open stream: HTTP request failed! HTTP/1.0 411 Length Required
.
虽然我使用Content-Length field
了错误并没有得到解决。如果有人可以帮助我,这是我的代码,在此先感谢。
<?php
set_time_limit(0);
include "ui.php";
$oy= `perl E:/mul.pl`;
$context = stream_context_create(array('http' => array('method'=>'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'Content-Length: 0', 'content' => '')));
$result = file_get_contents($oy, false, $context);
?>