PageRenderTime 48ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/2.0/Tests/Math/uniqid.php

#
PHP | 15 lines | 9 code | 4 blank | 2 comment | 0 complexity | 1bb98b3ab5dad3f6903a258a493c0e4e MD5 | raw file
Possible License(s): CPL-1.0, GPL-2.0, CC-BY-SA-3.0, MPL-2.0-no-copyleft-exception, Apache-2.0
  1. [expect] prefix1
  2. [expect] prefix2
  3. [file]
  4. <?php
  5. // no prefix
  6. echo uniqid("") . ";";
  7. //echo uniqid() . ";";
  8. echo uniqid("prefix1") . ";";
  9. echo uniqid("prefix2", true) . ";";
  10. echo lcg_value();
  11. ?>