php请求php
Posted 一个永
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php请求php相关的知识,希望对你有一定的参考价值。
function post2($url, $data){//file_get_content $postdata = http_build_query( $data ); $opts = array(‘http‘ => array( ‘method‘ => ‘POST‘, ‘header‘ => ‘Content-type: application/x-www-form-urlencoded‘, ‘content‘ => $postdata ) ); $context = stream_context_create($opts); $result = file_get_contents($url, false, $context); return $result; }
以上是关于php请求php的主要内容,如果未能解决你的问题,请参考以下文章