- 博客(12)
- 收藏
- 关注
原创 MySQL基础
感谢尚硅谷的课程 地址:https://www.bilibili.com/video/BV1iq4y1u7vj?spm_id_from=333.999.0.0
2022-06-29 17:22:27 268 1
原创 JS base64解密之后中文乱码
新建 base.js文件 内容为下面的代码块/*** UTF16和UTF8转换对照表* U+00000000 – U+0000007F 0xxxxxxx* U+00000080 – U+000007FF 110xxxxx 10xxxxxx* U+00000800 – U+0000FFFF 1110xxxx 10xxxxxx 10xxxxxx* U+00010000 – U+001FFFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx* U+00200000
2022-04-08 22:01:37 1719
原创 Nginx+Keepalived 高可用配置
编译安装下载地址https://www.keepalived.org/download.html#使用 ./configure 编译安装如遇报错提示configure: error:!!! OpenSSL is not properly installed on your system. !!!!!! Can not include OpenSSL headers files. !!!安装依赖yum install openssl-develyum install keepaliv.
2022-04-06 17:20:45 2645
原创 Nginx 防盗链
worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; upstream httpds{ server 192.168.159.104;.
2022-04-06 16:46:17 2703
原创 Nginx UrlRewrite
worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_.
2022-04-05 16:21:00 1877
原创 Nginx 动静分离
配置反向代理http://192.168.159.104的文件目录这个服务器只存放html文件 静态文件不存放在负责转发的Nginx 放置静态文件(css js img fonts等)http://192.168.159.101 文件目录如下worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type appli
2022-04-05 15:39:31 2279
原创 基于反向代理的负载均衡器
worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; #httpds此处的名称需要和 http://httpds;中的httpds; 一致 upstream h
2022-04-05 13:50:49 81
原创 使用PHP生成小程序二维码
//请求完微信的接口 返回buffer 使用php自带函数 file_put_contents 将buffer写入到文件中 然后将文件保存为图片格式//查询微信appid等信息$this->wechat_config_model->where = array('acid'=>$data['uniacid']);$config = $this->we...
2019-09-05 12:02:42 346
转载 PHP 去除 和html标签
$data[$k]['content'] = preg_replace("/(\s|\&nbsp\;| |\xc2\xa0)/", " ", strip_tags($v['content']));
2019-03-14 16:48:53 1631 1
原创 在ThinkPHP中使用 BETWEEN AND 注意项
最近写一个价格区间的筛选,用到BETWEEN AND最近写一个价格区间的筛选,用到BETWEEN AND,当数据库查询的字段为varchar字段类型时,查询的数据不对,当为int类型时查询的数据时对的。我得出的结论是 BETWEEN AND 查询的字段为Int型,是这样吗,求大家支招!...
2019-03-09 09:49:05 3973
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人