Let's say I have an array with the following values:
0.7523262
0.9232192
1.5824928
5.2362123
What is the best way to randomly pick a value from this array so that the higher the value, the more likely it is to be selected? There are common functions to make a weighted selection, but they all use mt_rand(), which wouldn't work for something like this.
For example, a value of 2.4652474 would be twice as likely to be picked as a value of 1.2326237.