1--TEST--
2Test curl_copy_handle() with simple get
3--CREDITS--
4Rick Buitenman <rick@meritos.nl>
5#testfest Utrecht 2009
6--EXTENSIONS--
7curl
8--FILE--
9<?php
10
11  include 'server.inc';
12  $host = curl_cli_server_start();
13
14  echo '*** Testing curl copy handle with simple GET ***' . "\n";
15
16  $url = "{$host}/get.inc?test=getpost&get_param=Hello%20World";
17  $ch = curl_init();
18
19  ob_start(); // start output buffering
20  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
21  curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
22
23  $copy = curl_copy_handle($ch);
24  curl_close($ch);
25
26  $curl_content = curl_exec($copy);
27  curl_close($copy);
28
29  var_dump( $curl_content );
30?>
31--EXPECT--
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