慕莱坞森
你可以在php5中使用cURL-less$url = 'URL';$data = array('field1' => 'value', 'field2' => 'value');$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
));$context = stream_context_create($options);$result = file_get_contents($url, false, $context);var_dump($result);