mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
37 lines
682 B
PHP
37 lines
682 B
PHP
--TEST--
|
|
Bug #72202 (curl_close doesn't close cURL handle)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("curl")) {
|
|
exit("skip curl extension not loaded");
|
|
}
|
|
if (getenv("SKIP_ONLINE_TESTS")) {
|
|
die("skip online test");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$a = fopen(__FILE__, "r");
|
|
$b = $a;
|
|
var_dump($a, $b);
|
|
fclose($a);
|
|
var_dump($a, $b);
|
|
unset($a, $b);
|
|
|
|
$a = curl_init();
|
|
$b = $a;
|
|
var_dump($a, $b);
|
|
curl_close($a);
|
|
var_dump($a, $b);
|
|
unset($a, $b);
|
|
?>
|
|
--EXPECTF--
|
|
resource(%d) of type (stream)
|
|
resource(%d) of type (stream)
|
|
resource(%d) of type (Unknown)
|
|
resource(%d) of type (Unknown)
|
|
resource(%d) of type (curl)
|
|
resource(%d) of type (curl)
|
|
resource(%d) of type (Unknown)
|
|
resource(%d) of type (Unknown)
|