Improve markup

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@229028 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hannes Magnusson 2007-02-05 10:09:00 +00:00
parent bf7e274c41
commit 11cb4f16f4
2 changed files with 24 additions and 24 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.11 $ -->
<!-- $Revision: 1.12 $ -->
<refentry id='function.curl-getinfo'>
<refnamediv>
<refname>curl_getinfo</refname>
@ -27,106 +27,106 @@
<term><parameter>opt</parameter></term>
<listitem>
<para>
This may be one of the following:
This may be one of the following constants:
<itemizedlist>
<listitem>
<simpara>
"CURLINFO_EFFECTIVE_URL" - Last effective URL
<constant>CURLINFO_EFFECTIVE_URL</constant> - Last effective URL
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_HTTP_CODE" - Last received HTTP code
<constant>CURLINFO_HTTP_CODE</constant> - Last received HTTP code
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_FILETIME" - Remote time of the retrieved document, if -1 is returned the time of the document is unknown
<constant>CURLINFO_FILETIME</constant> - Remote time of the retrieved document, if -1 is returned the time of the document is unknown
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_TOTAL_TIME" - Total transaction time in seconds for last transfer
<constant>CURLINFO_TOTAL_TIME</constant> - Total transaction time in seconds for last transfer
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_NAMELOOKUP_TIME" - Time in seconds until name resolving was complete
<constant>CURLINFO_NAMELOOKUP_TIME</constant> - Time in seconds until name resolving was complete
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_CONNECT_TIME" - Time in seconds it took to establish the connection
<constant>CURLINFO_CONNECT_TIME</constant> - Time in seconds it took to establish the connection
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_PRETRANSFER_TIME" - Time in seconds from start until just before file transfer begins
<constant>CURLINFO_PRETRANSFER_TIME</constant> - Time in seconds from start until just before file transfer begins
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_STARTTRANSFER_TIME" - Time in seconds until the first byte is about to be transferred
<constant>CURLINFO_STARTTRANSFER_TIME</constant> - Time in seconds until the first byte is about to be transferred
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_REDIRECT_TIME" - Time in seconds of all redirection steps before final transaction was started
<constant>CURLINFO_REDIRECT_TIME</constant> - Time in seconds of all redirection steps before final transaction was started
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_SIZE_UPLOAD" - Total number of bytes uploaded
<constant>CURLINFO_SIZE_UPLOAD</constant> - Total number of bytes uploaded
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_SIZE_DOWNLOAD" - Total number of bytes downloaded
<constant>CURLINFO_SIZE_DOWNLOAD</constant> - Total number of bytes downloaded
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_SPEED_DOWNLOAD" - Average download speed
<constant>CURLINFO_SPEED_DOWNLOAD</constant> - Average download speed
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_SPEED_UPLOAD" - Average upload speed
<constant>CURLINFO_SPEED_UPLOAD</constant> - Average upload speed
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_HEADER_SIZE" - Total size of all headers received
<constant>CURLINFO_HEADER_SIZE</constant> - Total size of all headers received
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_HEADER_OUT" - The request string sent. Available since PHP 6.0.0
<constant>CURLINFO_HEADER_OUT</constant> - The request string sent. Available since PHP 6.0.0
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_REQUEST_SIZE" - Total size of issued requests, currently only for HTTP requests
<constant>CURLINFO_REQUEST_SIZE</constant> - Total size of issued requests, currently only for HTTP requests
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_SSL_VERIFYRESULT" - Result of SSL certification verification requested by setting CURLOPT_SSL_VERIFYPEER
<constant>CURLINFO_SSL_VERIFYRESULT</constant> - Result of SSL certification verification requested by setting CURLOPT_SSL_VERIFYPEER
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_CONTENT_LENGTH_DOWNLOAD" - content-length of download, read from Content-Length: field
<constant>CURLINFO_CONTENT_LENGTH_DOWNLOAD</constant> - content-length of download, read from Content-Length: field
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_CONTENT_LENGTH_UPLOAD" - Specified size of upload
<constant>CURLINFO_CONTENT_LENGTH_UPLOAD</constant> - Specified size of upload
</simpara>
</listitem>
<listitem>
<simpara>
"CURLINFO_CONTENT_TYPE" - Content-type of downloaded object, NULL indicates server did not send valid Content-Type: header
<constant>"CURLINFO_CONTENT_TYPE</constant> - Content-type of downloaded object, NULL indicates server did not send valid Content-Type: header
</simpara>
</listitem>
</itemizedlist>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.curl-multi-getcontent">
<refnamediv>
<refname>curl_multi_getcontent</refname>
<refpurpose>Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set</refpurpose>
<refpurpose>Return the content of a cURL handle if <constant>CURLOPT_RETURNTRANSFER</constant> is set</refpurpose>
</refnamediv>
<refsect1 role="description">