Blogger Information
礼物粑粑
Blog
10
fans
0
comment
0
visits
6972
integral:0
P beans:20
  • List of blog posts
  • laravel解决超卖的几个方法

    数据库字段 1 错误的示范function test1(){ $id = request()->input('id'); $product = Product::where('id', $id)->firstOrFail(); if...

    2022-06-22 09:36 Read 619 comment 0
  • Laravel6接入谷歌验证器

    话不多说,直接上代码:### 安装谷歌验证器相关依赖composer require "earnp/laravel-google-authenticator:dev-master"### 安装二维码生成器composer require simple...

    2022-03-14 17:04 Read 889 comment 0
  • 一维数组排序,保留key值

    话不多说,直接上代码function sortWithKeyName($arr, $orderBy = 'desc'){ //在内存的另一处 $a 复制内容与 $arr 一样的数组 foreach ($arr as $key => $va...

    2022-02-21 10:19 Read 778 comment 0
  • laravel项目公共模板里变量赋值问题

    场景:公共模板下需要获取用户信息正常来说,只需要在BaseController里的构造函数内获取用户实例,View::share('user',$user)即可,但是由于laravel现版本 1先执行构造函数 2再调用中间件 3在调用具体方法,就导致...

    2022-01-20 11:18 Read 435 comment 0
  • PHP常用函数总结

    数学函数1.abs(): 求绝对值 $abs = abs(-4.2); //4.2 数字绝对值数字2.ceil(): 进一法取整 echo ceil(9.999); // 10 浮点数进一取整3.floor(): 舍去法取整 ech...

    2022-01-11 13:40 Read 356 comment 0
  • 20个常用正则表达式

    下面是整理在开发中经常使用到的20个正则表达式。1 . 校验密码强度密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10。 ^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$2. 校验中文字符串仅...

    2021-12-30 17:09 Read 1476 comment 0
  • foreach循环中需要引用时用闭包替代

    话不多说,直接上代码// 如果你需要这样写foreach ($arr as &$item) { $item['a'] = 'a';}// 若后续还会遍历此数组,为了避免因引用对后面的影响,最好转成这样写array_walk($arr, funct...

    2021-12-30 17:11 Read 592 comment 0
  • 快速实现支付宝支付及验签

    话不多说,直接上代码首先,进入支付宝文档中心,下载通用版SDKhttps://opendocs.alipay.com/open/02np93 // Clientpublic function createAopClient(){ $aop = ...

    2021-12-29 14:15 Read 1054 comment 0
  • ARiskGo风险提示推送的处理方法

    话不多说,直接上代码需要注意的是:验签前要将数组内元素处理成GBK,验签时也需要指定字符集为GBKpublic function getRiskNotice(){ foreach ($_POST as $k => &$v) { $...

    2021-12-29 13:56 Read 424 comment 0
  • Laravel实现备份数据库以及下载和删除备份文件

    话不多说,直接上代码1 备份,定好路径,这里定义的路径是项目的storage/app/public/backup,然后直接调用下面方法即可 $dirPath = storage_path('app/public/backup/');if (!file...

    2021-12-29 13:45 Read 350 comment 0