Warning: file_put_contents(): Only -1 of 49 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
curl_error curl_getinfo CURL PHP Manual curl_exec (PHP 4 >= 4.0.2, 5) — Perform a cURL session 설명 mixed ( resource $ch ) Execute the given session. This function should be called after ini...
Forum und email

curl_exec

(PHP 4 >= 4.0.2, PHP 5)

curl_exec — Perform 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"https://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);
?>

ì°¸ê³