欢迎进入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]

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
