/ Published in: PHP
Generating Array of Un-repeated Random Variables In User-Defined Bounds
Expand |
Embed | Plain Text
<?php function GetUnrepeatedRandomVariables($minIndex,$maxIndex) { while(1) { break; } return $res; } $arr = GetUnrepeatedRandomVariables(0, 10); foreach ($arr as $val) ?>
You need to login to post a comment.
