From 268c48bbec067b78256ab3d99076350396258671 Mon Sep 17 00:00:00 2001 From: Stefan Walk Date: Fri, 22 Aug 2003 10:49:26 +0000 Subject: [PATCH] changed return-type to mixed removed note about outcontrol added instructions how to return the result instead of printing it git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@138473 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/curl/functions/curl-exec.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/reference/curl/functions/curl-exec.xml b/reference/curl/functions/curl-exec.xml index edad2551a8..a9c2d4414c 100644 --- a/reference/curl/functions/curl-exec.xml +++ b/reference/curl/functions/curl-exec.xml @@ -1,5 +1,5 @@ - + @@ -9,7 +9,7 @@ Description - boolcurl_exec + mixedcurl_exec resourcech @@ -18,7 +18,13 @@ is simply to execute the predefined CURL session (given by the ch). - &tip.ob-capture; + + + If you want to have the result returned instead of it being printed to the + browser directly, use the CURLOPT_RETURNTRANSFER option of + curl_setopt. + +