summaryrefslogtreecommitdiff
path: root/ext/curl/tests/curl_copy_handle_basic_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curl/tests/curl_copy_handle_basic_004.phpt')
-rw-r--r--ext/curl/tests/curl_copy_handle_basic_004.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/curl/tests/curl_copy_handle_basic_004.phpt b/ext/curl/tests/curl_copy_handle_basic_004.phpt
index c690180a55..9a141ef65f 100644
--- a/ext/curl/tests/curl_copy_handle_basic_004.phpt
+++ b/ext/curl/tests/curl_copy_handle_basic_004.phpt
@@ -19,13 +19,13 @@ Rick Buitenman <rick@meritos.nl>
ob_start(); // start output buffering
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
-
-
+
+
$curl_content = curl_exec($ch);
$copy = curl_copy_handle($ch);
curl_close($ch);
-
- $curl_content_copy = curl_exec($copy);
+
+ $curl_content_copy = curl_exec($copy);
curl_close($copy);
var_dump( $curl_content_copy );