From 183418575de76e971dddd7e3c6ee8d784e9c0218 Mon Sep 17 00:00:00 2001 From: Simone Cortesi Date: Thu, 28 Mar 2002 16:21:54 +0000 Subject: [PATCH] * adding around netrc * 3 uppercasing * 3 rewordings git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75617 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/curl.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/curl.xml b/functions/curl.xml index 8aa1eb37fa..371d7a140d 100644 --- a/functions/curl.xml +++ b/functions/curl.xml @@ -1,5 +1,5 @@ - + CURL, Client URL Library Functions CURL @@ -217,9 +217,9 @@ curl_close ($ch); CURLOPT_NETRC: Set this option to a - non-zero value and PHP will scan your ~./netrc file to find - your username and password for the remote site that you're - establishing a connection with. + non-zero value and PHP will scan your ~./netrc + file to find your username and password for the remote site that + you're establishing a connection with. @@ -249,7 +249,7 @@ curl_close ($ch); CURLOPT_TIMEOUT: Pass a long as a parameter that contains the maximum time, in seconds, that - you'll allow the curl functions to take. + you'll allow the CURL functions to take. @@ -287,7 +287,7 @@ curl_close ($ch); CURLOPT_SSL_VERIFYHOST: Pass a long if - cURL should verify the Common name of the peer certificate in the + CURL should verify the Common name of the peer certificate in the SSL handshake. A value of 1 denotes that we should check for the existence of the common name, a value of 2 denotes that we should make sure it matches the provided hostname. @@ -312,7 +312,7 @@ curl_close ($ch); CURLOPT_RETURNTRANSFER: Pass a non-zero - value if you want cURL to directly return the transfer instead + value if you want CURL to directly return the transfer instead of printing it out directly. @@ -375,7 +375,7 @@ curl_close ($ch); CURLOPT_FTPPORT: Pass a string - containing the which will be used to get the IP address to use + containing the value which will be used to get the IP address to use for the ftp "POST" instruction. The POST instruction tells the remote server to connect to our specified IP address. The string may be a plain IP address, a hostname, a network @@ -445,7 +445,7 @@ curl_close ($ch); CURLOPT_KRB4LEVEL: Pass the KRB4 (Kerberos - 4) security level. This anyone of the following strings (in + 4) security level. Anyone of the following strings (in order from least powerful, to most powerful): 'clear', 'safe', 'confidential', 'private'. If the string does not match one of these, then 'private' is used. If you set this to NULL, @@ -519,7 +519,7 @@ curl_close ($ch); intch - This function is should be called after you initialize a CURL + This function should be called after you initialize a CURL session and all the options for the session are set. Its purpose is simply to execute the predefined CURL session (given by the ch).