update : 2015.11.03
php.shukuma.com

검색:
 
 
Perform a cURL session

curl_exec

(PHP 4 >= 4.0.2, PHP 5, PHP 7)

curl_execPerform a cURL session

설명

mixed curl_exec ( resource $ch )

Execute the given cURL session.

This function should be called after initializing a cURL session and all the options for the session are set.

인수

ch

curl_init()가 반환한 cURL 핸들입니다.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다. However, if the CURLOPT_RETURNTRANSFER option is set, it will return the result on success, FALSE on failure.

예제

Example #1 Fetching a web page

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

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

// grab URL and pass it to the browser
curl_exec($ch);

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

참고