mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
9 lines
207 B
PHP
9 lines
207 B
PHP
--TEST--
|
|
Test mt_getrandmax() - wrong paramas mt_getrandmax()
|
|
--FILE--
|
|
<?php
|
|
var_dump(mt_getrandmax(true));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: mt_getrandmax() expects exactly 0 parameters, 1 given in %s on line 2
|
|
NULL
|