ru_php/ext/curl/tests/callable_nullable_option.phpt

17 lines
198 B
Plaintext
Raw Permalink Normal View History

--TEST--
Callable options are nullable
--EXTENSIONS--
curl
--FILE--
<?php
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_PROGRESSFUNCTION => null,
]);
?>
===DONE===
--EXPECT--
===DONE===