Curl\Curl::setCookieFile PHP Méthode

setCookieFile() public méthode

Set Cookie File
public setCookieFile ( $cookie_file )
$cookie_file
    public function setCookieFile($cookie_file)
    {
        $this->setOpt(CURLOPT_COOKIEFILE, $cookie_file);
    }

Usage Example

Exemple #1
0
 /**
  * @author mohuishou<*****@*****.**>
  * @return array
  */
 public function loginJwc()
 {
     $this->_curl->setOpt(CURLOPT_FOLLOWLOCATION, true);
     $this->_curl->setOpt(CURLOPT_ENCODING, 'gzip');
     $this->_curl->setCookieFile(__DIR__ . '/../cookie/college-' . $this->_uid . '.cookie');
     $this->_curl->get($this->_url_login_jwc);
     if ($this->_curl->error) {
         echo 'Error: ' . $this->_curl->errorCode . ': ' . $this->_curl->errorMessage;
     } else {
         $this->_jwc_cookie = $this->_curl->getResponseCookies();
         return $this->_jwc_cookie;
     }
 }
All Usage Examples Of Curl\Curl::setCookieFile