mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
39131219e8
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
27 lines
800 B
PHP
27 lines
800 B
PHP
--TEST--
|
|
Bug #63795 (CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_init();
|
|
var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false));
|
|
/* Case that should throw an error */
|
|
var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true));
|
|
var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0));
|
|
var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1));
|
|
var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2));
|
|
|
|
curl_close($ch);
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
|
|
Notice: curl_setopt(): CURLOPT_SSL_VERIFYHOST no longer accepts the value 1, value 2 will be used instead in %s on line %d
|
|
bool(true)
|
|
bool(true)
|
|
|
|
Notice: curl_setopt(): CURLOPT_SSL_VERIFYHOST no longer accepts the value 1, value 2 will be used instead in %s on line %d
|
|
bool(true)
|
|
bool(true)
|