A simple random draw function written by PHP

Source: Internet
Author: User
  1. !--? php /**
  2. * "Lottery" function
  3. *
  4. * @param integer $first start number
  5. * @param integer $last end number
  6. * @param integer $total number of winners
  7. *
  8. * @return String
  9. *
  10. */
  11. function Iswinner ($first, $last, $total)
  12. {
  13. $winner = Array ();
  14. for ($i = 0;; $i + +)
  15. {
  16. $number = rand ($first, $last);
  17. if (!in_array ($number, $winner))
  18. $winner [] = $number;//If there is no number in the array, add it to the array
  19. if (count ($winner) = = $total) break;
  20. }
  21. return implode (', $winner);
  22. }
  23. //For test
  24. Echo iswinner (1, +);
copy code
Php
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.