1
0
mirror of synced 2025-12-08 22:28:16 +08:00
Files
SnowFlake-IdGenerator/PHP/tests/003.phpt
2023-03-21 13:58:30 +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)