Merge branch 'PHP-7.4' into PHP-8.0

This commit is contained in:
Jakub Zelenka 2020-11-27 16:35:16 +00:00
commit a87d620543

View file

@ -9,7 +9,8 @@ if (getenv('SKIP_ONLINE_TESTS')) die('skip online test');
default_socket_timeout=-1 default_socket_timeout=-1
--FILE-- --FILE--
<?php <?php
var_dump((bool) file_get_contents('https://php.net')); $clientCtx = stream_context_create(['ssl' => ['verify_peer' => false]]);
var_dump((bool) file_get_contents('https://www.php.net', false, $clientCtx));
?> ?>
--EXPECT-- --EXPECT--
bool(true) bool(true)