Loading

随笔分类 -  PHP

摘要:Laravel Schedule 中的 dailyAt 是如何工作的 业务逻辑中通过 dailyAt​ 指定了一个每天都需要执行的定时任务: $schedule->call(function () { // 业务逻辑 })->dailyAt('14:29'); ‍ ​Illuminate\Conso 阅读全文
posted @ 2024-05-07 17:41 zhpj 阅读(60) 评论(0) 推荐(0)
摘要:AES 加解密(前后端) 加密 前端加密: aesEncrypt(plainText: string, key: string) { const key = CryptoJS.enc.Latin1.parse(key); const iv = CryptoJS.enc.Latin1.parse('1 阅读全文
posted @ 2024-03-15 20:44 zhpj 阅读(88) 评论(0) 推荐(0)