You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- --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)
|