合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~ if (!function_exists('create_sms_code')) { /** * note 生成验证码 * author cjh 2020/11/17 17:24 * @param int $length 验证码长度 * @return string */ function create_sms_code($length = 4) { $code = ''; for ($i = 0; $i < $length; $i++) { $code .= rand(0, 9); } return $code; } } ~~~