PHP 模拟get,post请求

    用 file_get_contents() 发送get请求,如果请求失败会返回 FALSE 。在发送请求是如果url有空格之类的特殊字符需要对url进行urlencode进行编码,file_get_contents()除了可以进行get请求处理,还能发送post请求,同时也可以把文件读入一个字符串。在读取文件是性能高效。


    1.file_get_contents()发送get请求代码:


$url='http://www.zixuephp.net';      

$content= file_get_contents($url);      

if($content){

echo 'GET 请求发送成功!'; 

}


  2.file_get_contents()发送post请求代码:


  $url = 'zixuephp.net';

  //数据

  $data = array(

      'param' => 'test',

  );

  //讲post请求数据生成 URL-encode 之后的请求字符串

  $content = http_build_query($data);

  //数据长度

  $content_length = strlen($content);

  //构造请求post头

  $options = array(

      'http' => array(

          'method' => 'POST',

          'header' =>

          "Content-type: application/x-www-form-urlencoded" .

          "Content-length: $content_length",

          'content' => $content

      )

  );

  //执行请求,填入请求头信息

  if(file_get_contents($url, false, stream_context_create($options))){

      echo 'post请求成功!';

  }


  3.解决file_get_contents()请求乱码问题:


上面说完php通过file_get_contents()发送get和post请求,下面再说些关于file_get_content()抓取网页内容时乱码问题的解决。


  在实际测试中发现,网页中的gzip压缩会导致file_get_content()请求返回数据乱码的情况,通过修改请求头中的设置可以解决乱码问题。