laravel怎么生成一定长度范围的随机字符串?有个str_random()函数 $string = str_random(40); 但是它是固定长度的,怎么生成变化长度的随机字符串,比如生成20-30个字符的随机字符串?
str_random(random_int(20,30))