摘要: 说明:PHP源码加密模块,可以支持单个PHP文件或者整个目录中PHP文件加密(其他类型的文件只是单纯拷贝),详细见工具包下面README.md 一、下载解压 $ wget https://github.com/liexusong/php-beast/archive/master.zip $ unzi 阅读全文
posted @ 2020-08-27 11:08 蓝色星辰1993 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 一、添加数据(往名为mystream的Stream中添加了一个条目) > XADD mystream * sensor-id 1234 temperature 19.8 1518951480106-0 二、获取一个Stream的条目数量 > XLEN mystream (integer) 1 三、X 阅读全文
posted @ 2020-08-27 11:06 蓝色星辰1993 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: 创建插件 插件代码 count-down.wxml <view class="count-down"> <text class="days" wx:if="{{showDays}}">{{days}}</text> <text class="spot" wx:if="{{showDays}}">{{ 阅读全文
posted @ 2020-08-18 11:28 蓝色星辰1993 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 在一个form表单中,若只有一个input,按回车键表单会自动提交,但是当表单中存在多个input时,按回车键不会执行任何操作,这是form表单的一个特性。 解决方案:1. 把表单去掉,使用onclick事件,不用表单提交 2. 多一个input,注意type=“hidden”不行,因为type不是 阅读全文
posted @ 2020-07-17 10:38 蓝色星辰1993 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 整理自:https://mp.weixin.qq.com/s/8KTK_Bz8netP6R5MNSKeFw 搬运贴,如果有侵权请联系删除 场景:用户注册登录,用户中心服务查询 问题:当数据量越来越大,例如达到1亿注册量时,库无法承载所有的数据,此时需要对数据库进行水平切分。 常见的水平切分算法有“范 阅读全文
posted @ 2020-07-15 14:12 蓝色星辰1993 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 在本地环境安装了exif扩展,直接将so扩展文件拷贝到测试环境,需要重新编译扩展,操作步骤: # chmod +x exif.so # cp exif.so /datas/soft/php56/lib/php/extensions/no-debug-non-zts-20131226/ # vim p 阅读全文
posted @ 2020-07-09 18:26 蓝色星辰1993 阅读(320) 评论(0) 推荐(0) 编辑
摘要: Nodejs官网下载安装包,按指引安装: This package has installed: * Node.js v14.3.0 to /usr/local/bin/node * npm v6.14.5 to /usr/local/bin/8pm Make sure that /usr/loca 阅读全文
posted @ 2020-07-04 16:18 蓝色星辰1993 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 一、安装exif扩展 # cd /datas/package/php-5.6.20/ext/exif/ # /datas/soft/php56/bin/phpize # ./configure --with-php-config=/datas/soft/php56/bin/php-config # 阅读全文
posted @ 2020-07-03 11:10 蓝色星辰1993 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 参考文献:https://blog.csdn.net/qq_32540639/article/details/74909891 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; char 阅读全文
posted @ 2020-06-18 14:19 蓝色星辰1993 阅读(2220) 评论(0) 推荐(1) 编辑
摘要: 项目需要新开发一个发邮箱功能,以前做过,以为信手拈来,没想到花了两个小时,记录踩的坑 $mail = new PHPMailer(); $mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output $mail->isSMT 阅读全文
posted @ 2020-06-18 10:01 蓝色星辰1993 阅读(635) 评论(1) 推荐(0) 编辑