ru_php/ext/standard/tests/streams/bug72075.phpt

17 lines
372 B
PHP

--TEST--
Bug #72075 (Referencing socket resources breaks stream_select)
--FILE--
<?php
$r = [stream_socket_server("tcp://127.0.0.1:0", $errno, $errStr)];
$w = NULL;
$e = NULL;
// Without this line, all is well:
$dummy =& $r[0];
print stream_select($r, $w, $e, 0.5);
?>
--EXPECTF--
Deprecated: Implicit conversion from float 0.5 to int loses precision in %s on line %d
0