企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## Faker基础数据(英文) ~~~awk // 生成随机整数 0 - 9 $faker->randomDigit; // 8 // 生成唯一整数 $faker->unique()->randomDigit; // 1 // 生成随机不为空的整数 $faker->randomDigitNotNull; // 8 // 生成随机数字 $faker->randomNumber($nbDigits = 5, $strict = false); // 6783 // 生成随机浮点数 $faker->randomFloat($nbMaxDecimals = null, $min = 0, $max = null); // 13399.11050914 // 在指定范围内生成随机数 $faker->numberBetween($min = 1000, $max = 9000); // 3953 // 生成随机字符 $faker->randomLetter; // t // 在给定的数组中,随机生成给定的个数字符 $faker->randomElements($array = ['a', 'b', 'c'], $count = 2); // Array ( [0] => a [1] => c ) // 在给定的数组中,生成单个随机字符 $faker->randomElement($array = ['a', 'b', 'c']); // a // 打乱给定的字符串 $faker->shuffle('hello, world'); // elrlh dowol, // 打乱给定的数组 $faker->shuffle([1, 2, 3]); // Array ( [0] => 3 [1] => 1 [2] => 2 ) // 给占位符生成随机整数 (数字为#) $faker->numerify('Hello ###'); // Hello 713 // 给占位符生成随机字符串 (字符串为?) $faker->lexify('Hello ???'); // Hello jjg // 给占位符生成混合的随机字符串 $faker->bothify('Hello ##??'); // Hello 79ks // 给占位符生成随机的字符(字母、数字、符号) $faker->asciify('Hello ***'); // Hello B.7 // 根据正则规则生成随机字符 $faker->regexify('[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}'); // _XD%HRE@VUREXV2D.OLYE ~~~