Lines Matching refs:handle
35 * array of the curl handle, headers resource, and body resource.
53 foreach ($this->handles as $handle) {
54 if (is_resource($handle)) {
55 curl_close($handle);
101 // Find an unused handle in the cache
107 // Add a new handle
108 $handle = curl_init();
109 $id = (int) $handle;
110 $this->handles[$id] = $handle;
113 return $handle;
116 private function releaseEasyHandle($handle)
118 $id = (int) $handle;
130 curl_setopt_array($handle, $unsetValues);
131 curl_reset($handle);