11 2024 档案
摘要:$res = shell_exec("git -C /var/www/hyperf pull 2>&1"); 启动hyperf项目 sudo php bin/hyperf.php start
阅读全文
摘要:docker phpmyadmin 连接宿主mysql数据库报错:mysqli::real_connect(): (HY000/2002): Connection refused 解决: bind-address:0.0.0.0
阅读全文
摘要:$records = DB::table('order') ->where('buy_at', '<', Carbon::now()->subMinutes(50)) ->get();
阅读全文
摘要:$container = ApplicationContext::getContainer(); $redis = $container->get(Redis::class); $timestamp = time() + $delay_seconds; return $redis->zAdd($qu
阅读全文