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.

004.phpt 270 B

123456789101112131415
  1. --TEST--
  2. Check for snowdrift batch get unique
  3. --SKIPIF--
  4. <?php if (!extension_loaded("snowdrift")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. $arr = [];
  8. $max = 100000;
  9. foreach (SnowDrift::NextNumId($max) as $id) {
  10. $arr[$id] = '';
  11. }
  12. var_dump(count($arr));
  13. ?>
  14. --EXPECT--
  15. int(100000)