生成唯一的订单号

admin1年前Laravel580

public function get_order_sn()
{
    return date('Ymd') . substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);
}

$orderid = date("Ymdhis") . sprintf("%08d", $this->user_id) . mt_rand(1000, 9999);


返回列表

没有更早的文章了...

下一篇:公众号登录

相关文章

查找下级所有数据

public function bottom($mid = 3){    $members = DB::select('select id,parent_id,`level...

解密微信绑定的手机号

public function mobile() { $code = request()->input('code'); if (!$code) { return $this-&...

laravel 加cache锁

use Illuminate\Support\Facades\Redis; use Illuminate\Support\Facades\Cache; $lock = Ca...

接口返回处理

public function __construct()    {        $action = request()->rout...

微信开放平台-扫码登录

public function wx_info(){    $code = request()->input('code');    if...

php 优化

使用 gc_collect_cycles() 强制进行垃圾回收 PHP 的垃圾回收机制会自动释放不再使用的变量所占用的内存。然而,在某些情况下,尤其是在长时间运行的脚本(如 CLI...