将数据POST到PHP中的URL

将数据POST到PHP中的URL

如何将POST数据发送到PHP中的URL(没有表单)?

我将使用它来发送变量来完成并提交表单。


呼如林
浏览 663回答 3
3回答

慕莱坞森

你可以在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);
打开App,查看更多内容
随时随地看视频慕课网APP