摘要:
mobileBase() { // #ifdef APP-PLUS if (plus.os.name == "Android") { return ""; } else { return this.app.mobile+'/'; } // #endif // #ifdef H5 return '/' 阅读全文
摘要:
// 给定时间戳$currentTime = $time;//例如time()// 获取当前小时$currentHour = date('H', $currentTime);// 获取当前时间的分钟部分$currentMinute = date('i', $currentTime);// 计算当前分 阅读全文
摘要:
自动任务设置shell脚本每分钟执行一次 #!/bin/bashPATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexport PATH #每隔10秒执行step=10for (( i = 0; i < 59 阅读全文
摘要:
https://blog.csdn.net/qq_51808107/article/details/132588092 阅读全文
摘要:
文档:https://docker.easydoc.net/doc/81170005/cCewZWoN/lTKfePfP 教程:https://www.bilibili.com/video/BV11L411g7U1/?p=2&spm_id_from=pageDriver&vd_source=93de 阅读全文
摘要:
H5效果: 小程序效果: 原因:custom设置为true则代表不使用原生导航栏 将他设置为false即可在小程序正常显示底部导航 阅读全文
摘要:
tabindex="0" 阅读全文
摘要:
试试将访问api的前缀https改成http 阅读全文
摘要:
1.安装redis应用,安装redis扩展, 2.重启PHP,开启端口如6379,然后在config.php配置cache信息 3.实际运行案例: 阅读全文
摘要:
1.安装memcached扩展: 2.重启PHP,在thinkPHP或者fastAdmin启用扩展(开放相应端口:例如11211) 在fastAdmin中,则需修改config.php里面的cache配置: 3.实际运行测试: 第一个信息正常显示说明运行成功,第二个显示false,说明缓存删除成功 阅读全文