mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
17 lines
365 B
PHP
17 lines
365 B
PHP
--TEST--
|
|
GH-15937 (stream overflow on timeout setting)
|
|
--SKIPIF--
|
|
<?php if (getenv("SKIP_ONLINE_TESTS")) die("skip online test"); ?>
|
|
--FILE--
|
|
<?php
|
|
$config = [
|
|
'http' => [
|
|
'timeout' => PHP_INT_MAX,
|
|
],
|
|
];
|
|
$ctx = stream_context_create($config);
|
|
var_dump(fopen("http://www.example.com", "r", false, $ctx));
|
|
?>
|
|
--EXPECTF--
|
|
resource(%d) of type (stream)
|