Generates a random string of ASCII characters of codes 32 to 126.
The generated string includes alpha-numeric characters and common miscellaneous characters. Use this method when testing general input where the content is not restricted.
Do not use this method when special characters are not possible (e.g., in machine or file names that have already been validated); instead, use DrupalWebTestCase::randomName().
$length: Length of random string to generate.
Randomly generated string.
DrupalWebTestCase::randomName()
public static function randomString($length = 8) {
$str = '';
for ($i = 0; $i < $length; $i++) {
$str .= chr(mt_rand(32, 126));
}
return $str;
}