Forum und email

curl_copy_handle

(PHP 5)

curl_copy_handle — Copia o manipulador cURL com todas as suas preferências

Descrição

resource curl_copy_handle ( resource $ch )

Copia o manipulador cURL mantendo as mesmas preferências.

Parâmetros

ch

Um manipulador cURL retornado por curl_init().

Valor Retornado

Retorna um novo manipulador cURL.

Exemplos

Example#1 Copiando um manipulador cURL

<?php
// create a new cURL resource
$ch curl_init();

// set URL and other appropriate options
curl_setopt($chCURLOPT_URL'https://www.example.com/');
curl_setopt($chCURLOPT_HEADER0);

// copy the handle
$ch2 curl_copy_handle($ch);

// grab URL (https://www.example.com/) and pass it to the browser
curl_exec($ch2);

// close cURL resources, and free up system resources
curl_close($ch2);
curl_close($ch);
?>