function curl init

curl_initPodręcznik PHPPoprzedniNastępnycurl_init (PHP 4 >= 4.0.2)curl_init -- Initialize a CURL sessionDescriptionresource curl_init ( [string url]) The curl_init() will initialize a new session and return a CURL handle for use with the curl_setopt(), curl_exec(), and curl_close() functions. If the optional url parameter is supplied then the CURLOPT_URL option will be set to the value of the parameter. You can manually set this using the curl_setopt() function. Przykład 1. Initializing a new CURL session and fetching a webpage <?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); ?> See also: curl_close(), curl_setopt() PoprzedniSpis treściNastępnycurl_getinfoPoczątek rozdziałucurl_setopt
Wyszukiwarka

Podobne podstrony:
function curl close
function curl errno
function ccvs init
function curl setopt
function ccvs init
function ncurses init
function ncurses init
function curl setopt
function mssql init
function curl exec
function w32api init dtype

więcej podobnych podstron