curl_exec
(PHP 4 >= 4.0.2, PHP 5)
curl_exec — Perform a cURL session
Description
mixed curl_exec
(
resource $ch
)
This function should be called after initializing a cURL session and all
the options for the session are set.
Return Values
Returns TRUE on success or FALSE on failure. However, if the CURLOPT_RETURNTRANSFER
option is set, it will return the result on success, FALSE on failure.
Examples
Example #1 Fetching a web page
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>