Merge branch 'PHP-7.3' into PHP-7.4

This commit is contained in:
Jakub Zelenka 2019-05-05 21:06:30 +01:00
commit b348c46e29

View File

@ -13,7 +13,7 @@ $clientCtx = stream_context_create(['ssl' => [
// We can't use http://curl.haxx.se/ca/cacert.pem for this test
// as it is redirected to https which means the test would depend
// on system cafile when opening stream.
'cafile' => 'http://www.php.net',
'cafile' => 'http://www.nginx.org',
]]);
file_get_contents('https://github.com', false, $clientCtx);
?>