复制代码
文件2:indexx.php 主要测试文件。
'1', 'b' => '2www' ); $params = array( 'http' => array( 'method' => 'post', 'header' => content-type:application/x-www-form-urlencoded, 'content' => http_build_query($data), )); for($i=0;$i $response = file_get_contents($url, false, stream_context_create($params)); if ($response) { echo $response; break; } else { echo 'tring ' . $i . ' failed!
'; } } ?>
复制代码
得到结果:post data success!数据成功被post。
