window mysql开启远程访问
1. 设置账户权限mysql -u root -p 输入进去后切换到mysql数据库use mysql 查询user表...
npm安装时报错,出现 certificate has expired
最近使用npm安装工具屡屡报错,大致显示为:npm ERR! request to https://registry.npm.taobao.org/cnpm failed, reason: certificate has expired....
mysql查询名称重复的数据
查询所有重复数据:SELECT * FROM your_table_name WHERE your_name IN ( SELECT your_name  ...
nodejs 文件操作类的封装
最近做node项目,操作文件特别不方便,于是封装了工具类挺好用的,分享给大家 const fs = require('fs') const path = require('path') /** &nb...
php es 报错 No alive nodes. All the 1 nodes seem to be down
php连接es时报错No alive nodes. All the 1 nodes seem to be down,原因是Elasticsearch开启了安全认证,查看服务器端响应信息为:received plaintext http traffic on&n...
php字符串压缩工具
判断字符串是否需要压缩,然后再进行压缩,需要优化的地方很多,比如把压缩结果保存起来,避免执行2次,判断是依赖于压缩的结果大小和原始字符串的大小来判断的,懒得处理了。代码如下/** * 字符串压缩工具 */ class CompressStrUtil...