时间:2021-07-01 10:21:17 帮助过:10人阅读
直接 show you the code,这是最好的方法
'bar', 'baz'=>'boom', 'site'=>'www.example.net', 'name'=>'nowa magic'); $data = http_build_query($data); //$postdata = http_build_query($data);$options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $data //'timeout' => 60 * 60 // 超时时间(单位:s) ));$url = "http://127.0.0.1/test2.php";$context = stream_context_create($options);$result = file_get_contents($url, false, $context);echo $result;?>
';print_r( $data );echo '';?>
Array
(
[foo] => bar
[baz] => boom
[site] => www.example.net
[name] => nowa magic
)