摘要:
php artisan migrate --path=database/migrations/new 阅读全文
摘要:
1/ config/logging.php 文件下 配置一个自定义 'cache' => [ 'driver' => 'daily', 'path' => storage_path('logs/cache/laravel.log'), 'level' => env('LOG_LEVEL', 'deb 阅读全文
摘要:
导出功能: maatwebsite/excel 使用此组件用作导出,效果比较友好,但是感觉导入就不太友好 导入: box/spout 推荐使用这个组件 导入效果比较好-- https://opensource.box.com/spout/getting-started/#reader 生成一个导入类 阅读全文
摘要:
有时会处理一个字符串变成2数组 一般情况下会用 explode('_', stri) 然后用数组下标获取 也可以用strpos(str, '_') 先做判断 用substr()做截取操作 substr(str,0, len)获取第一个 substr(str,len+1) 获取第二个 阅读全文
摘要:
先设置配置 接口处进行第一次验证 file_get_contents('php://input'); 进行接收推送信息 大致的内容是这样的格式 图片类型: {"msg":"{\"ToUserName\":\"\",\"FromUserName\":\"8c4c0581-75e9-4f3b-b083- 阅读全文
摘要:
首先开通支付配置(小程序后台) 在验证地址时,需要在接口处写上验证代码 在进行第一验证之后 支付后字节服务器会正常推送数据流 file_get_contents('php://input') {"echostr":"Dhvqy7R","msg":"{\"appid\":\"\",\"cp_order 阅读全文
摘要:
Carbon::parse('2021-02-26T09:22:33.196Z', 'UTC')->setTimezone('PRC')->format('Y-m-d H:i:s') // "2021-02-26 17:22:33 Carbon::createFromTimestampMs('162 阅读全文
摘要:
// 搜索游戏列表 $('#input_search').bind('input propertychange', function() { let searchObj = $(this).val(); let url = $(this).attr("url") let game_id = $(th 阅读全文
摘要:
crontab -e #添加代码 * * * * * /usr/bin/php7.0 /var/www/html/laravel/artisan schedule:run >> /dev/null 2>&1 注意:/usr/bin/php7.0为你的php位置 ,* * * * *分别代表 分 时 阅读全文
摘要:
注: {{!! $url !!}} 也可以用js在后台代码中实现,只是会刷新两次 阅读全文