當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Curl::__construct方法代碼示例

本文整理匯總了PHP中Curl::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Curl::__construct方法的具體用法?PHP Curl::__construct怎麽用?PHP Curl::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Curl的用法示例。


在下文中一共展示了Curl::__construct方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mysql = new db_connect();
     $this->pzn = $this->mysql->get_pzn();
     $this->negative_kws = $this->mysql->get_negative_kws();
 }
開發者ID:AlexBGD,項目名稱:DrKaske,代碼行數:7,代碼來源:KaskeScraper.php

示例2: __construct

 public function __construct($sUrl, $sApp, $sExtra)
 {
     parent::__construct($sUrl);
     $aCurlVersion = curl_version();
     $sCurlVersion = $aCurlVersion['version'];
     $sPHPVersion = PHP_VERSION;
     $this->setUserAgent("{$sApp} ({$sExtra}; PHP {$sPHPVersion}; cURL {$sCurlVersion})");
     $this->setReturnTransfer(true);
     $this->setFollowLocation(true);
 }
開發者ID:vulcandth,項目名稱:steamprofile,代碼行數:10,代碼來源:SteamProfileLoader.php

示例3: __construct

 public function __construct($sUrl, $sApp, $sExtra)
 {
     parent::__construct($sUrl);
     $aCURLVersion = curl_version();
     $this->setUserAgent($sApp . ' (' . $sExtra . '; PHP ' . PHP_VERSION . '; cURL ' . $aCURLVersion['version'] . ')');
     // setting CURLOPT_FOLLOWLOCATION in safe_mode will raise a warning
     if (ini_get('safe_mode') == 'Off' || ini_get('safe_mode') === 0) {
         $this->setOption(CURLOPT_FOLLOWLOCATION, true);
         $this->setOption(CURLOPT_MAXREDIRS, 3);
     }
 }
開發者ID:fedyamaslov1987,項目名稱:steamprofile,代碼行數:11,代碼來源:HttpLoader.class.php

示例4: __construct

 /**
  * Initialize the wraper with an internal cURL handle
  *
  * @param str $url
  * @return void
  */
 public function __construct($url = NULL)
 {
     $this->handle = curl_init();
     parent::__construct($url);
 }
開發者ID:nickwhitt,項目名稱:PayPalAPI,代碼行數:11,代碼來源:CurlRequest.php

示例5: __construct

 /**
  * Constructor
  *
  * @param array $options
  */
 public function __construct($url, $options = null)
 {
     parent::__construct($url, $options);
     $this->prepare();
 }
開發者ID:Jb-Initio,項目名稱:Pronos,代碼行數:10,代碼來源:Put.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
 }
開發者ID:nekrasovdmytro,項目名稱:finder,代碼行數:4,代碼來源:GoogleCurl.php

示例7: __construct

 public function __construct(array $curlOptions = array())
 {
     parent::__construct($curlOptions);
 }
開發者ID:love254443233,項目名稱:dogpatch,代碼行數:4,代碼來源:Dogpatch.php

示例8: __construct

 public function __construct($logger)
 {
     $this->log = $logger;
     parent::__construct($logger);
     $this->log->debug('-------------------------------------- NEW REQUEST --------------------------------------');
 }
開發者ID:microsec,項目名稱:passbyme2fa-client-php,代碼行數:6,代碼來源:Send2FaRequest.php

示例9: __construct

 /**
  * Class constructor
  *
  * @return	void
  */
 public function __construct($base_url = null)
 {
     parent::__construct($base_url);
 }
開發者ID:MexFree,項目名稱:TotalPlay,代碼行數:9,代碼來源:Model.php


注:本文中的Curl::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。