$.ajax 里面的 data這樣
成都創(chuàng)新互聯(lián)專注于康樂企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,商城開發(fā)??禈肪W(wǎng)站建設(shè)公司,為康樂等地區(qū)提供建站服務(wù)。全流程按需設(shè)計網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
data={
請求的名稱1:數(shù)據(jù)1,
請求的名稱2:數(shù)據(jù)2,
}
php:
$_POST['請求的名稱1'];
thinkphp
I('請求的名稱')
//后面處理需求
json_encode([要返回的數(shù)據(jù)])
function?POST($Url,$Argv){
$flag?=?0;
$post?=?'';
$errno?=?'';
$errstr?=?'';
foreach($Argv?as?$key?=?$value){
if($flag?!=?0){
$post?.=?"";
$flag?=?1;
}
$post?.=?$key?.?"=";
$post?.=?urlencode($value);
$flag??=?1;
}
$length?=?strlen($post);
$fp?=?fsockopen("localhost",80,$errno,$errstr,10)?or?exit($errstr."---".$errno);
$header??=?"POST?"?.?$Url?.?"?HTTP/1.1\r\n";
$header?.=?"Host:127.0.0.1\r\n";
$header?.=?"Referer:/flandy/post.php\r\n";
$header?.=?"Content-Type:?application/x-www-form-urlencoded\r\n";
$header?.=?"Content-Length:?"?.?$length?.?"\r\n";
$header?.=?"Connection:?Close\r\n\r\n";
$header?.=?$post?.?"\r\n";
fputs($fp,$header);
$inheader?=?1;
$Return?=?'';
while(!feof($fp)){
$line?=?fgets($fp,1024);
if($inheader??($line?==?"\n"?||?$line?==?"\r\n"))$inheader?=?0;
if($inheader?==?0)?$Return?.=?$line;
}
fclose($fp);
return?trim($Return);
}
//調(diào)用方式
$Result?=?POST('xxxxxURLxxx',array('dataName'?=?'dataValue'));
用PHP向服務(wù)器發(fā)送HTTP的POST請求,代碼如下:
?php
/**????
*?發(fā)送post請求????
*?@param?string?$url?請求地址????
*?@param?array?$post_data?post鍵值對數(shù)據(jù)????
*?@return?string????
*/????
function?send_post($url,?$post_data)?{????
$postdata?=?http_build_query($post_data);????
$options?=?array(????
'http'?=?array(????
'method'?=?'POST',????
'header'?=?'Content-type:application/x-www-form-urlencoded',????
'content'?=?$postdata,????
'timeout'?=?15?*?60?//?超時時間(單位:s)????
)????
);????
$context?=?stream_context_create($options);????
$result?=?file_get_contents($url,?false,?$context);?????????????
return?$result;????
}
使用的時候直接調(diào)用上面定義的send_post方法:
$post_data?=?array(
'username'?=?'username',
'password'?=?'password'
);
send_post('網(wǎng)址',?$post_data);
寫這樣一段代碼
while($row = mysql_fetch_array($result)){
echo "名: ";
echo $row['lastname'];
echo "年齡: ";
echo $row['age'];
}
這是把所有數(shù)據(jù)打印出來了 如果要確定值你需要一個主鍵或索引來搜索數(shù)據(jù)庫 不過你按照上面的代碼測試一下應(yīng)可以找到你要的數(shù)據(jù) 然后自己進(jìn)行篩選
首先要把數(shù)據(jù)轉(zhuǎn)換成json格式,再通過curl方法調(diào)用接口并傳參數(shù)
代碼如下:
$keyword?=?urlencode($_POST['keyword']);
$parameters?=?json_encode(array('keyWord'=$keyword,'areaCode'='*'));
$post_data['appToken']?=?"323ds7674354fds32fdsda60173";//隨便寫的
$post_data['parameters']?=?$parameters;
$url?=?'';//隨便寫的
$ch?=?curl_init();
curl_setopt($ch,?CURLOPT_POST,?1);
curl_setopt($ch,?CURLOPT_URL,?$url);
curl_setopt($ch,?CURLOPT_POSTFIELDS,?$post_data);//用post方法傳送參數(shù)
curl_setopt($ch,?CURLOPT_RETURNTRANSFER,?1);
$response?=?curl_exec($ch);
curl_close($ch);
之后就返回數(shù)據(jù)即可。
用一個接口去整合就行了,AJAX請求一個接口,在這個接口里面把獲取到的數(shù)據(jù)提交到其他接口就行了