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的主要内容,如果未能解决你的问题,请参考以下文章

PHP代码-psysh调试代码片段工具

超实用的php代码片段

比较有用的php代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

php Yoast SEO规范输出的代码片段

php Yoast SEO规范输出的代码片段