web service model很多时候需要使用别的web service来建造自己的web service,这就需要到使用服务器端进行请求http操作,post或者get请求。
function send_post($url, $post_data) { $postdata = http_build_query($post_data); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $postdata, 'timeout' => 15 * 60 ) ); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return $result; }
|
以上是发送请求的函数,具体操作如下:
$post_data = array( 'username' => 'stclair2201', 'password' => 'handan' ); $result=send_post('http://localhost/ServiceProvider/index.php/Index/getService', $post_data);
|