curl_close_basic.phpt 221 B

12345678910111213141516
  1. --TEST--
  2. curl_close
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@php.net>
  5. #testfest Utrecht 2009
  6. --EXTENSIONS--
  7. curl
  8. --FILE--
  9. <?php
  10. $ch = curl_init();
  11. curl_close($ch);
  12. var_dump($ch);
  13. ?>
  14. --EXPECT--
  15. object(CurlHandle)#1 (0) {
  16. }