当前位置: 首页>>代码示例>>PHP>>正文


PHP Curl::__construct方法代码示例

本文整理汇总了PHP中Curl\Curl::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Curl::__construct方法的具体用法?PHP Curl::__construct怎么用?PHP Curl::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Curl\Curl的用法示例。


在下文中一共展示了Curl::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  *	Конструктор
  *
  *	@param	string	$base_url
  */
 public function __construct($base_url = null)
 {
     parent::__construct($base_url);
     $this->setOpt(CURLOPT_SSL_VERIFYPEER, false);
     $this->setJsonDecoder(function ($response) {
         if (($json_obj = json_decode($response, true)) !== null) {
             return $json_obj;
         }
         return $response;
     });
 }
开发者ID:brightbrothers,项目名称:Mackey,代码行数:16,代码来源:Request.php

示例2: __construct

 public function __construct($account, $user, $key)
 {
     try {
         if (count(func_get_args()) !== 3) {
             throw new \Exception("HiboutikAPI: The contructor expects exactly 3 (three) arguments.");
         }
         $this->account_connection = "https://" . $account . ".hiboutik.com/apirest";
         $this->user_connection = $user;
         $this->key_connection = $key;
         $this->debug = false;
         parent::__construct();
         $user_agent = "HiboutikAPI v" . self::VERSION_API . " (+https://github.com/hiboutik/hiboutikapi)";
         $user_agent .= " PHP/" . PHP_VERSION;
         $curl_version = curl_version();
         $user_agent .= ' curl/' . $curl_version['version'];
         $this->setUserAgent($user_agent);
         $this->setBasicAuthentication($user, $key);
     } catch (\Exception $e) {
         trigger_error($e->getMessage(), E_USER_ERROR);
     }
 }
开发者ID:hiboutik,项目名称:hiboutikapi,代码行数:21,代码来源:HiboutikAPI.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
 }
开发者ID:guitarpoet,项目名称:clips-tool,代码行数:4,代码来源:Curl.php

示例4: __construct

 /**
  * Constructor
  *
  * @param array $conf key and login prameters
  */
 public function __construct(array $conf)
 {
     parent::__construct();
     $this->_data = $conf;
 }
开发者ID:fdisotto,项目名称:cac-api,代码行数:10,代码来源:CACApi.php


注:本文中的Curl\Curl::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。