faker使用
laravel中faker的方法总结 展开 laravel faker用法总结 安装 composer require fzaninotto/faker 一、基础方法: 随机数:randomDigit // 7 不为空随机数:randomDigitNotNull // 5 随机数:randomNumber($nbDigits = NULL, $strict = false) // 随机浮点数:randomFloat($nbMaxDecimals = NULL, $min = 0, $max = NULL) // 48.8932 区间内的随机数:numberBetween($min = 1000, $max = 9000) // 8567 随机字母:randomLetter // 'b' // returns randomly ordered subsequence of a provided array 随机选取数组中的几个,返回也为数组:randomElements($array = array ('a','b','c'), $count = 1) // array('c') 随机选取数组中的一个:randomElement($array = array ('a','b','c')) // 'b' 打乱字符串:shuffle('hello, world') // 'rlo,h