- 相關(guān)推薦
php的curl模擬post請求的例子
本文分享一例php代碼,使用php中的curl函數(shù)模擬post請求,用來學(xué)習(xí)curl函數(shù)的用法,還是不錯的,感興趣的朋友參考下。
php curl模擬post請求
在php編程中,curl函數(shù)用的挺多的,本文分享一個簡單的例子。
1,本機(jī):
復(fù)制代碼 代碼示例:
<?php
$uri = "http://www.jbxue.com/test.php";//服務(wù)器的地址
// 參數(shù)數(shù)組
$data = array (
'name' => 'tanteng'
// 'password' => 'password'
);
$ch = curl_init ();
// print_r($ch);
curl_setopt ( $ch, CURLOPT_URL, $uri );
curl_setopt ( $ch, CURLOPT_POST, 1 );
curl_setopt ( $ch, CURLOPT_HEADER, 0 );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
$return = curl_exec ( $ch );
curl_close ( $ch );
print_r($return);
2,遠(yuǎn)程服務(wù)器:
復(fù)制代碼 代碼示例:
<?php
if(isset($_POST['name'])){
if(!empty($_POST['name'])){
echo '您好,',$_POST['name'].'!';
}
}
【php的curl模擬post請求的例子】相關(guān)文章:
PHP如何用curl發(fā)送GET和POST請求09-07
PHP如何使用curl發(fā)送GET和POST請求09-10
PHP中使用cURL實(shí)現(xiàn)Get和Post請求的方法10-30
PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法06-19
php的curl學(xué)習(xí)總結(jié)07-08
PHP如何使用curl實(shí)現(xiàn)數(shù)據(jù)抓取09-27
PHP中用CURL偽造IP來源的方法06-26
PHP考前模擬練習(xí)02-17
php中file-get-contents與curl性能比較分析10-24
PHP處理Ajax請求與Ajax跨域問題05-26