Heim  >  Artikel  >  php教程  >  PHP调用小黄鸡api post发送

PHP调用小黄鸡api post发送

WBOY
WBOYOriginal
2016-06-06 19:55:511457Durchsuche

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 PHP调用小黄鸡 api post发送,代码: !-- index.php --页面 meta http-equiv="Content-Type" content="text/html; charset=utf-8" / ?php function do_post_request($url, $data, $optional_headers

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  PHP调用小黄鸡 api post发送,代码:

  页面

  

  

  function do_post_request($url, $data, $optional_headers = null)

  {

  $params = array('http' => array(

  'method' => 'POST',

  'content' => $data

  ));

  if ($optional_headers !== null) {

  $params['http']['header'] = $optional_headers;

  }

  $ctx = stream_context_create($params);

  $fp = @fopen($url, 'rb', false, $ctx);

  if (!$fp) {

  throw new Exception("Problem with $url, $php_errormsg");

  }

  $response = @stream_get_contents($fp);

  if ($response === false) {

  throw new Exception("Problem reading data from $url, $php_errormsg");

  }

  return $response;

  }

  function simi($value="Love"){

  $url = 'http://www.xiaohuangji.com/ajax.php';

  $postdata = array("para"=>$value);

  $postdata = http_build_query($postdata);

  return do_post_request($url,$postdata);

  }echo simi("Love");

  ?>

  调用这个这段的代码就是

  // 装载小黄鸡函数

  // @author ipqhjjybj

  // @data  2013.11.30

  // 调用方法:

  // $result = simi($str);

  // $result String类型  是返回的内容文本

  // $str String类型  是要回答的内容

  也可以用CURL来做

  function curl_post($url, array $post = NULL, array $options = array())

  {

  $defaults = array(

  CURLOPT_POST => 1,

  CURLOPT_HEADER => 0,

  CURLOPT_URL => $url,

  CURLOPT_FRESH_CONNECT => 1,

  CURLOPT_RETURNTRANSFER => 1,

  CURLOPT_FORBID_REUSE => 1,

  CURLOPT_TIMEOUT => 4,

  CURLOPT_POSTFIELDS => http_build_query($post)

  );

  $ch = curl_init();

  curl_setopt_array($ch, ($options + $defaults));

  if( ! $result = curl_exec($ch))

  {

  trigger_error(curl_error($ch));

  }

  curl_close($ch);

  return $result;

  }

  function simi($value = "Love")

  {

  $post_data = array ("para"=>$value) ;

  $url ='http://www.xiaohuangji.com/ajax.php';

  return curl_post($url,$post_data);

  }

[1] [2] 

PHP调用小黄鸡api post发送

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn