php-src/ext/curl/tests/bug46711.phpt

34 lines
564 B
Plaintext
Raw Normal View History

2009-04-30 10:41:09 +00:00
--TEST--
Bug #46711 (lost memory when foreach is used for values passed to curl_setopt())
2009-06-11 21:11:22 +00:00
--SKIPIF--
<?php
if (!extension_loaded("curl")) {
exit("skip curl extension not loaded");
}
?>
2009-04-30 10:41:09 +00:00
--FILE--
<?php
$ch = curl_init();
$opt = array(
CURLOPT_AUTOREFERER => TRUE,
CURLOPT_BINARYTRANSFER => TRUE
);
curl_setopt( $ch, CURLOPT_AUTOREFERER , TRUE );
foreach( $opt as $option => $value ) {
curl_setopt( $ch, $option, $value );
}
var_dump($opt); // with this bug, $opt[58] becomes NULL
?>
--EXPECT--
array(2) {
[58]=>
bool(true)
[19914]=>
bool(true)
}