mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
--TEST--
|
|
curl_setopt() basic parameter test
|
|
--CREDITS--
|
|
Paul Sohier
|
|
#phptestfest utrecht
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("curl")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
echo "*** curl_setopt() call with incorrect parameters\n";
|
|
$ch = curl_init();
|
|
curl_setopt();
|
|
curl_setopt(false);
|
|
|
|
curl_setopt($ch);
|
|
curl_setopt($ch, false);
|
|
curl_setopt($ch, -1);
|
|
curl_setopt($ch, '');
|
|
curl_setopt($ch, 1, false);
|
|
|
|
curl_setopt(false, false, false);
|
|
curl_setopt($ch, '', false);
|
|
curl_setopt($ch, 1, '');
|
|
curl_setopt($ch, -1, 0);
|
|
?>
|
|
--EXPECTF--
|
|
*** curl_setopt() call with incorrect parameters
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 0 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 1 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 1 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects parameter 1 to be resource, boolean given in %s on line %d
|
|
|
|
Warning: curl_setopt() expects parameter 2 to be long, %unicode_string_optional% given in %s on line %d
|
|
|
|
Warning: curl_setopt(): Invalid curl configuration option in %scurl_setopt_error.php on line %d
|