1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

Merge branch 'PHP-7.4'

This commit is contained in:
Jakub Zelenka
2019-05-05 21:06:58 +01:00
+1 -1
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);
?>