1--TEST--
2Test curl_copy_handle() with simple get
3--CREDITS--
4Rick Buitenman <rick@meritos.nl>
5#testfest Utrecht 2009
6--SKIPIF--
7<?php if (!extension_loaded("curl") || false === getenv('PHP_CURL_HTTP_REMOTE_SERVER')) print "skip need PHP_CURL_HTTP_REMOTE_SERVER environment variable"; ?>
8--FILE--
9<?php
10
11  $host = getenv('PHP_CURL_HTTP_REMOTE_SERVER');
12
13  echo '*** Testing curl copy handle with simple GET ***' . "\n";
14
15  $url = "{$host}/get.php?test=getpost&get_param=Hello%20World";
16  $ch = curl_init();
17
18  ob_start(); // start output buffering
19  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
20  curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
21
22  $copy = curl_copy_handle($ch);
23  curl_close($ch);
24
25  $curl_content = curl_exec($copy);
26  curl_close($copy);
27
28  var_dump( $curl_content );
29?>
30===DONE===
31--EXPECTF--
32*** Testing curl copy handle with simple GET ***
33string(106) "array(2) {
34  ["test"]=>
35  string(7) "getpost"
36  ["get_param"]=>
37  string(11) "Hello World"
38}
39array(0) {
40}
41"
42===DONE===
43