curl_setopt_array_basic.phpt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --TEST--
  2. curl_setopt_array() function - tests setting multiple cURL options with curl_setopt_array()
  3. --CREDITS--
  4. Mattijs Hoitink mattijshoitink@gmail.com
  5. #Testfest Utrecht 2009
  6. --SKIPIF--
  7. <?php include 'skipif.inc'; ?>
  8. --FILE--
  9. <?php
  10. /*
  11. * Prototype: bool curl_setopt_array(resource $ch, array $options)
  12. * Description: Sets multiple options for a cURL session.
  13. * Source: ext/curl/interface.c
  14. * Documentation: http://wiki.php.net/qa/temp/ext/curl
  15. */
  16. // Figure out what handler to use
  17. include 'server.inc';
  18. $host = curl_cli_server_start();
  19. if (!empty($host)) {
  20. // Use the set Environment variable
  21. $url = "{$host}/get.php?test=get";
  22. } else {
  23. // Create a temporary file for the test
  24. $tempname = tempnam(sys_get_temp_dir(), 'CURL_HANDLE');
  25. $url = 'file://'. $tempname;
  26. // add the test data to the file
  27. file_put_contents($tempname, "Hello World!\nHello World!");
  28. }
  29. // Start the test
  30. echo '== Starting test curl_setopt_array($ch, $options); ==' . "\n";
  31. // curl handler
  32. $ch = curl_init();
  33. // options for the curl handler
  34. $options = array (
  35. CURLOPT_URL => $url,
  36. CURLOPT_RETURNTRANSFER => 1
  37. );
  38. ob_start(); // start output buffering
  39. curl_setopt_array($ch, $options);
  40. $returnContent = curl_exec($ch);
  41. curl_close($ch);
  42. var_dump($returnContent);
  43. isset($tempname) and is_file($tempname) and @unlink($tempname);
  44. ?>
  45. --EXPECT--
  46. == Starting test curl_setopt_array($ch, $options); ==
  47. string(25) "Hello World!
  48. Hello World!"