php-src/ext/curl/tests/curl_multi_setopt_basic001.phpt
2012-12-26 00:43:37 -05:00

26 lines
545 B
PHP

--TEST--
curl_multi_setopt basic test
--SKIPIF--
<?php
if (!extension_loaded("curl")) {
exit("skip curl extension not loaded");
}
$curl_version = curl_version();
if ($curl_version['version_number'] < 0x071000) {
exit("skip: test works only with curl >= 7.16.0");
}
?>
--FILE--
<?php
$mh = curl_multi_init();
var_dump(curl_multi_setopt($mh, CURLMOPT_PIPELINING, 0));
var_dump(curl_multi_setopt($mh, -1, 0));
?>
--EXPECTF--
bool(true)
Warning: curl_multi_setopt(): Invalid curl multi configuration option in %s on line %d
bool(false)