mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
23 lines
444 B
PHP
23 lines
444 B
PHP
--TEST--
|
|
Bug #65538: TLS unexpected EOF failure
|
|
--EXTENSIONS--
|
|
openssl
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
|
|
if (!defined("OPENSSL_KEYTYPE_EC")) die("skip EC disabled");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$release = file_get_contents(
|
|
'https://chromedriver.storage.googleapis.com/LATEST_RELEASE',
|
|
false,
|
|
stream_context_create(['ssl' => ['verify_peer'=> false]])
|
|
);
|
|
echo gettype($release);
|
|
|
|
?>
|
|
--EXPECT--
|
|
string
|