摘要: <?php //发送手机验证码 function smsCode() { //dump($this->request->post()); //请求方式验证 /*if (!$this->request->isAjax()) { $this->error('请求异常'); }*/ $mobile = $ 阅读全文
posted @ 2020-07-02 17:37 成文的博客 阅读(247) 评论(0) 推荐(0) 编辑
摘要: //生成唯一订单号 function create_trade_no($prefix='dd') { return $prefix . date('YmdHis', time()) . substr(microtime(), 2, 6) . sprintf('%03d', rand(0, 999)) 阅读全文
posted @ 2020-07-02 17:28 成文的博客 阅读(3663) 评论(0) 推荐(0) 编辑
摘要: <?php /** * 实现中文字串截取无乱码的方法. */ function getSubstr($string, $start, $length) { if (mb_strlen($string, 'utf-8') > $length) { $str = mb_substr($string, $ 阅读全文
posted @ 2020-07-02 16:57 成文的博客 阅读(402) 评论(0) 推荐(0) 编辑
摘要: alert(formatNum(10000000.87)); /** * @param n 输入数字 * @param is_int 是否只显示整数 * @returns {string} */ function formatNum(n,is_int=true) { //转化成字符串 var str 阅读全文
posted @ 2020-07-02 16:45 成文的博客 阅读(1798) 评论(0) 推荐(0) 编辑