mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
9 lines
214 B
PHP
9 lines
214 B
PHP
--TEST--
|
|
Test getrandmax() - wrong params test getrandmax()
|
|
--FILE--
|
|
<?php
|
|
var_dump($biggest_int = getrandmax(true));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: getrandmax() expects exactly 0 parameters, 1 given in %s on line 2
|
|
NULL
|