程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP curl實現get、post和cookie提交實例講解

PHP curl實現get、post和cookie提交實例講解

編輯:關於PHP編程

類似於dreamhost這類主機服務商,是顯示fopen的使用的。使用php的curl可以實現支持FTP、FTPS、HTTP HTPPS SCP SFTP TFTP TELNET DICT FILE和LDAP。curl 支持SSL證書、HTTP POST、HTTP PUT 、FTP 上傳,kerberos、基於HTT格式的上傳、代理、cookie、用戶+口令證明、文件傳送恢復、http代理通道就最常用的來說,是基於http的 get和post方法。

一、http的get實現
php代碼
<?php
$ch = curl_init("http://www.domain.com/api/index.php?test=1") ;   
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 獲取數據返回   
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在啟用 CURLOPT_RETURNTRANSFER 時候將獲取數據返回   
echo $output = curl_exec($ch) ;   
 
 /* 寫入文件 */  
$fh = fopen("out.html", w) ;   
fwrite($fh, $output) ;   
fclose($fh) ;   

$ch = curl_init("http://www.domain.com/api/index.php?test=1") ;
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 獲取數據返回
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在啟用 CURLOPT_RETURNTRANSFER 時候將獲取數據返回
echo $output = curl_exec($ch) ;

/* 寫入文件 */
$fh = fopen("out.html", w) ;
fwrite($fh, $output) ;
fclose($fh) ;
?>

<?php
$url = http://www.domain.com/api/ ;
$fields = array(
               lname=>justcoding ,
               fname=>phplover ,
               title=>myapi,
               age=>27 ,
               email=>[email protected] ,
               phone=>1353777303
              );
//$post_data = implode(&,$fields);
//open connection
$ch = curl_init() ;
//set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL,$url) ;
curl_setopt($ch, CURLOPT_POST,count($fields)) ; // 啟用時會發送一個常規的POST請求,類型為:application/x-www-form-urlencoded,就像表單提交的一樣。
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields); // 在HTTP中的"POST"操作。如果要傳送一個文件,需要一個@開頭的文件名

ob_start();
curl_exec($ch);
$result = ob_get_contents() ;
ob_end_clean();

echo $result;
//close connection
curl_close($ch) ;
?>
 
Php代碼
<?php   
if($_GET[test])   
{   
    print_r($_GET);   
}   
 
if($_POST)   
{   
    print_r($_POST);   
}   
?>
<?php
if($_GET[test])
{
     print_r($_GET);
}
if($_POST)
{
    print_r($_POST);
}
?>

二、http的post實現
Php代碼
<?php   
$url = http://www.domain.com/api/ ;   
$fields = array(   
                lname=>justcoding ,   
                fname=>phplover ,   
                title=>myapi,   
                age=>27 ,   
                email=>[email protected] ,   
                phone=>1353777303  
               );   
//$post_data = implode(&,$fields);   
//open connection   
$ch = curl_init() ;   
//set the url, number of POST vars, POST data   
curl_setopt($ch, CURLOPT_URL,$url) ;   
curl_setopt($ch, CURLOPT_POST,count($fields)) ; // 啟用時會發送一個常規的POST請求,類型為:application/x-www-form-urlencoded,就像表單提交的一樣。   
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields); // 在HTTP中的"POST"操作。如果要傳送一個文件,需要一個@開頭的文件名   
ob_start();   
curl_exec($ch);   
$result = ob_get_contents() ;   
ob_end_clean();   
echo $result;   
//close connection   
curl_close($ch) ;  
?>

三. php的curl傳送cookie
兩種方式:
一種是自動:
Php代碼
<?php
curl_setopt($curlHandle, CURLOPT_COOKIEJAR, cookie.txt ); //保存   
curl_setopt($curlHandle, CURLOPT_COOKIEFILE, cookie.txt ); //讀取  
curl_setopt($curlHandle, CURLOPT_COOKIEJAR, cookie.txt ); //保存
curl_setopt($curlHandle, CURLOPT_COOKIEFILE, cookie.txt ); //讀取
?>
這樣COOKIE會自動跟上去.
不過要分兩次,一是先訪問產生cookie,接著連結才能用cookie

例子:Php代碼
<?php      
function get_curlcuconent2($filename,$referer)   
{   
        $cookie_jar = tempnam(./tmp,JSESSIONID);   
        $ch = curl_init();   
        curl_setopt($ch, CURLOPT_URL, $filename);   
        curl_setopt($ch, CURLOPT_HEADER, false);   
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);   
        
        //設置文件讀取並提交的cookie路徑   
        curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_jar);   
        $filecontent=curl_exec($ch);   
        curl_close($ch);   
        
        $ch = curl_init();   
        $hostname ="www.domain.com";   
        //$referer="http://www.domain.com/";   
        curl_setopt($ch, CURLOPT_URL, $filename);   
        curl_setopt($ch, CURLOPT_REFERER, $referer); // 看這裡,你也可以說你從google來   
        curl_setopt($ch, CURLOPT_USERAGENT, "www.domain.com");   
        
        //$request = "JSESSIONID=abc6szw15ozvZ_PU9b-8r"; //設置POST參數   
        //curl_setopt($ch, CURLOPT_POSTFIELDS, $request);      
        // 上面這句,當然你可以說你是baidu,改掉這裡的值就ok了,可以實現小偷的功能,$_SERVER[HTTP_USER_AGENT]   
        //你也可以自己做個 spider 了,那麼就偽裝這裡的 CURLOPT_USERAGENT 吧   
        //如果你要把這個程序放到linux上用php -q執行那也要寫出具體的$_SERVER[HTTP_USER_AGENT],偽造的也可以   
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);   
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved