logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

php转java生成的byte

php$num = "210";$val = (($num+128) % 256) - 128;javaSystem.out.println((byte)210)

#java#php
thinkphp5 中引用vendor下的文件

//引用require "../vendor/PHPExcel/Classes/PHPExcel.php";//使用$obpe = new \PHPExcel();

thinkphp5 记录日志

记录日志tp_log('支付回调数据===>' . json_encode($data), 'index', request()->controller());记录最后一条sqluse think\Db;tp_log('支付回调数据===>' . Db::getLastSql(), 'index', request()->controller());/*** [ tp自带写

#php
php 获取当前季度信息

调用此方法function get_quarter($month){if ($month == 1 || $month == 2 || $month == 3) {$start = date('Y-01-01 00:00:00');$end = date("Y-03-31 23:59:59");$quarter = 1; //第一季度} elseif ($month == 4 || $mont

#php
thinkphp5 redis使用

安装redis 宝塔安装的redis测试安装成功进入redis redis-cli查看密码 config get requirepass设置密码 config set requirepass “123456”使用redis有两种方式 第一种是使用php里面的redis 第二种是使用tp框架里面的redis 只不过tp框架里面的redis很多方法不再这个think\cache\driver\Redi

#数据库#redis
vue 获取input值

v-model 表单输入绑定<template><div><input class="login-input" type="text"v-model="username" placeholder="账号"><input class="login-input" type="password" v-model="password" placeholder="密

#小程序
宝塔Warning: require(): open_basedir restriction in effect解决方案

报错源码Warning: require(): open_basedir restriction in effect. File(/www/wwwroot/cs.liumy.top/thinkphp/base.php) is not within the allowed path(s): (/www/wwwroot/cs.liumy.top/public/:/tmp/) in /www/wwwro

#linux
linux下安装redis和phpredis扩展

安装redis下载安装包[root@izbp1bjm0o6frv1c7pp8uaz redis]# wget http://download.redis.io/releases/redis-6.0.8.tar.gz如果下载失败 多运行几次命令就可以解压安装包[root@izbp1bjm0o6frv1c7pp8uaz redis]# tar -zxvf redis-6.0.8.tar.gz进入安装目

文章图片
#redis#linux
redis做用户登陆

给用当前登录的用户信息的id 生成tokentoken作为redis的键 给token 设置值 设置token键的到期过期时间 登陆成功 token返回前端 前端每次调用接口都要传token<?phpnamespace app\api\controller\liumy;use think\cache\driver\Redis;class Index //extends Base{public

#redis#数据库
到底了