From 6c44b961983d6da01b9858b9034490569ae96955 Mon Sep 17 00:00:00 2001 From: Nicolas Chaillan Date: Thu, 9 Jan 2003 13:10:11 +0000 Subject: [PATCH] Fixing #21541 and some whitespaces issues git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@111149 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/curl/reference.xml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/reference/curl/reference.xml b/reference/curl/reference.xml index 1a849d7330..346ec6e897 100644 --- a/reference/curl/reference.xml +++ b/reference/curl/reference.xml @@ -1,5 +1,5 @@ - + CURL, Client URL Library Functions CURL @@ -41,13 +41,15 @@ &reftitle.examples; Once you've compiled PHP with CURL support, you can begin using - the curl functions. The basic idea behind the CURL functions is + the curl functions. The basic idea behind the CURL functions is that you initialize a CURL session using the curl_init, then you can set all your - options for the transfer via the curl_exec - and then you finish off your session using the - curl_close. Here is an example that uses - the CURL functions to fetch the example.com homepage into a file: + options for the transfer via the curl_setopt, + then you can execute the session with the + curl_exec and then you finish off + your session using the curl_close. + Here is an example that uses the CURL functions to fetch the + example.com homepage into a file: Using PHP's CURL module to fetch the example.com homepage