* adding <filename> around netrc

* 3 uppercasing
* 3 rewordings


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75617 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Simone Cortesi 2002-03-28 16:21:54 +00:00
parent 1436de79e0
commit 183418575d

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.32 $ -->
<!-- $Revision: 1.33 $ -->
<reference id="ref.curl">
<title>CURL, Client URL Library Functions</title>
<titleabbrev>CURL</titleabbrev>
@ -217,9 +217,9 @@ curl_close ($ch);
<listitem>
<simpara>
<parameter>CURLOPT_NETRC</parameter>: 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 <filename>~./netrc</filename>
file to find your username and password for the remote site that
you're establishing a connection with.
</simpara>
</listitem>
<listitem>
@ -249,7 +249,7 @@ curl_close ($ch);
<simpara>
<parameter>CURLOPT_TIMEOUT</parameter>: 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.
</simpara>
</listitem>
<listitem>
@ -287,7 +287,7 @@ curl_close ($ch);
<listitem>
<simpara>
<parameter>CURLOPT_SSL_VERIFYHOST</parameter>: 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);
<listitem>
<simpara>
<parameter>CURLOPT_RETURNTRANSFER</parameter>: 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.
</simpara>
</listitem>
@ -375,7 +375,7 @@ curl_close ($ch);
<listitem>
<simpara>
<parameter>CURLOPT_FTPPORT</parameter>: 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);
<listitem>
<para>
<parameter>CURLOPT_KRB4LEVEL</parameter>: 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);
<methodparam><type>int</type><parameter>ch</parameter></methodparam>
</methodsynopsis>
<para>
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
<parameter>ch</parameter>).