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 unique
- --SKIPIF--
- <?php if (!extension_loaded("snowdrift")) print "skip"; ?>
- --FILE--
- <?php
- $arr = [];
- $max = 100000;
- for ($i = 0; $i < $max; $i++) {
- $id = SnowDrift::NextId();
- $arr[$id] = '';
- }
- var_dump(count($arr));
- ?>
- --EXPECT--
- int(100000)
|