- 相關(guān)推薦
php的curl實(shí)現(xiàn)get和post的代碼
類似于dreamhost這類主機(jī)服務(wù)商,是顯示fopen的使用的。使用php的curl可以實(shí)現(xiàn)支持FTP、FTPS、HTTP HTPPS SCP SFTP TFTP TELNET DICT FILE和LDAP。具體使用如下,更多消息請(qǐng)關(guān)注應(yīng)屆畢業(yè)生網(wǎng)!
curl 支持SSL證書、HTTP POST、HTTP PUT 、FTP 上傳,kerberos、基于HTT格式的上傳、代理、cookie、用戶+口令證明、文件傳送恢復(fù)、http代理通道就最常用的來(lái)說(shuō),是基于http的get和post方法。
代碼實(shí)現(xiàn):
1、http的get實(shí)現(xiàn)
代碼如下:
?
$ch = curl_init("http://www.jb51.net/") ;curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ;curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ;$output = curl_exec($ch) ;$fh = fopen("out.html", 'w') ;fwrite($fh, $output) ;
fclose($fh) ;
2、http的post實(shí)現(xiàn)
代碼如下:
?
//extract data from the post
extract($_POST) ;
//set POST variables
$url = 'http://www.jb51.net/get-post.php' ;$fields = array('lname'=>urlencode($last_name) ,'fname'=>urlencode($first_name) ,
'title'=>urlencode($title) ,
'company'=>urlencode($institution) ,
'age'=>urlencode($age) ,
'email'=>urlencode($email) ,
'phone'=>urlencode($phone)
);
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&' ; }
rtrim($fields_string ,'&') ;
//open connection
$ch = curl_init() ;
//set the url, number of POST vars, POST datacurl_setopt($ch, CURLOPT_URL,$url) ;curl_setopt($ch, CURLOPT_POST,count($fields)) ;curl_setopt($ch, CURLOPT_POSTFIELDS,$fields_string) ;//execute post$result = curl_exec($ch) ;//close connection
curl_close($ch) ;
【php的curl實(shí)現(xiàn)get和post的代碼】相關(guān)文章:
PHP中使用cURL實(shí)現(xiàn)Get和Post請(qǐng)求的方法10-30
PHP如何使用curl發(fā)送GET和POST請(qǐng)求09-10
PHP如何用curl發(fā)送GET和POST請(qǐng)求09-07
PHP的GET和POST請(qǐng)求發(fā)送方法09-27
php的curl模擬post請(qǐng)求的例子10-25
PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳實(shí)例10-22
PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法06-19
php的file-get-contents與curl性能分析09-04