1
0
mirror of synced 2025-12-10 23:28:16 +08:00
Files
SnowFlake-IdGenerator/PHP/tests/004.phpt
2021-04-07 11:51:02 +08:00

15 lines
270 B
PHP

--TEST--
Check for snowdrift batch get unique
--SKIPIF--
<?php if (!extension_loaded("snowdrift")) print "skip"; ?>
--FILE--
<?php
$arr = [];
$max = 100000;
foreach (SnowDrift::NextNumId($max) as $id) {
$arr[$id] = '';
}
var_dump(count($arr));
?>
--EXPECT--
int(100000)