php 产生随机整数,随机字符串,随机颜色等类用法

内容摘要
这篇文章主要为大家详细介绍了php 产生随机整数,随机字符串,随机颜色等类用法,具有一定的参考价值,可以用来参考一下。

这是一个php专用的类,用于产生随机整数,随机字符串,随机颜
文章正文

这篇文章主要为大家详细介绍了php 产生随机整数,随机字符串,随机颜色等类用法,具有一定的参考价值,可以用来参考一下。

这是一个php专用的类,用于产生随机整数,随机字符串,随机颜色等,同时你可以对这个类进行扩展,产生自己的随机数据,php随机数据生产类,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<code class="php">
/**
 * 产生随机整数,随机字符串,随机颜色等
 *
 * @param
 * @arrange (www.idcnote.com)
 **/
 public static class RandomHelper
 {
  private static Random randomSeed = new Random();
  
  /// <summary>
  /// Generates a random string with the given length
  /// </summary>
  /// <param name="size">Size of the string</param>
  /// <param name="lowerCase">If true, generate lowercase string</param>
  /// <returns>Random string</returns>
  public static string RandomString(int size, bool lowerCase)
  {
   // StringBuilder is faster than using strings (+=)
   StringBuilder RandStr = new StringBuilder(size);
  
   // Ascii start position (65 = A / 97 = a)
   int Start = (lowerCase) ? 97 : 65;
  
   // Add random chars
   for (int i = 0; i < size; i++)
    RandStr.Append((char)(26 * randomSeed.NextDouble() + Start));
  
   return RandStr.ToString();
  }
  
  /// <summary>
  /// Returns a random number.
  /// </summary>
  /// <param name="min">Minimal result</param>
  /// <param name="max">Maximal result</param>
  /// <returns>Random number</returns>
  public static int RandomNumber(int Minimal, int Maximal)
  {
   return randomSeed.Next(Minimal, Maximal);
  }
  
  /// <summary>
  /// Returns a random boolean value
  /// </summary>
  /// <returns>Random boolean value</returns>
  public static bool RandomBool()
  {
   return (randomSeed.NextDouble() > 0.5);
  }
  
  /// <summary>
  /// Returns a random color
  /// </summary>
  /// <returns></returns>
  public static System.Drawing.Color RandomColor()
  {
   return System.Drawing.Color.FromArgb(
    randomSeed.Next(256),
    randomSeed.Next(256),
    randomSeed.Next(256)
   );
  }
  
 }
 
//使用范例:
// Generate a random word:
string RandomWord = RandomHelper.RandomString(10, true);
  
// Generate a random number:
int Number = RandomHelper.RandomNumber(0, 10);
  
// Generate a random boolean value:
bool Active = RandomHelper.RandomBool();
  
// Generate a random color:
Color Background = RandomHelper.RandomColor();
 
 
/***   来自php教程(www.idcnote.com)   ***/</code>

注:关于php 产生随机整数,随机字符串,随机颜色等类用法的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!