public function CurlVersion::getAll

Get all of the curl_version() data

Return value

array

1 call to CurlVersion::getAll()
CurlVersion::get in drupal/core/vendor/guzzle/http/Guzzle/Http/Curl/CurlVersion.php
Get a specific type of curl information

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Curl/CurlVersion.php, line 44

Class

CurlVersion
Class used for querying curl_version data

Namespace

Guzzle\Http\Curl

Code

public function getAll() {
  if (!$this->version) {
    $this->version = curl_version();
  }
  return $this->version;
}