__construct() 공개 메소드

public __construct ( )
예제 #1
1
파일: Curl.php 프로젝트: Zaszczyk/incubator
 public function __construct()
 {
     if (!self::isAvailable()) {
         throw new ProviderException('CURL extension is not loaded');
     }
     $this->handle = curl_init();
     $this->initOptions();
     parent::__construct();
 }
예제 #2
1
 function __construct()
 {
     if (!self::isAvailable()) {
         throw new ProviderException('HTTP or HTTPS stream wrappers not registered');
     }
     $this->context = stream_context_create();
     $this->initOptions();
     parent::__construct();
 }
예제 #3
1
파일: Curl.php 프로젝트: Ak-Army/incubator
 public function __construct()
 {
     if (!self::isAvailable()) {
         throw new ProviderException('CURL extension is not loaded');
     }
     $this->handle = curl_init();
     if ($this->handle === false) {
         throw new HttpException(curl_error($this->handle), 'curl');
     }
     $this->initOptions();
     parent::__construct();
 }