/** * 观察对象 * Undocumented class */ class User implements SplSubject { public $loginCnt; private $observers; public function __construct() { $this->obs ...
分类:
Web程序 时间:
2020-07-23 01:49:57
阅读次数:
93
var jsonMPath = "modules\\json.lua".GetDLLRunDir(); if (!File.Exists(jsonMPath)) throw new Exception($"modules\\json.lua 不存在!"); Script script = new S ...
分类:
其他好文 时间:
2020-07-22 20:45:27
阅读次数:
99
router.beforeEach((to, from, next) => { if (to.matched.length 0) { next('/error404') } else { if (!sessionStorage.getItem('sid')&&to.path!="/login") { ...
分类:
其他好文 时间:
2020-07-22 20:40:10
阅读次数:
94
第一种: IP通过ip2long转换后可以进行比较。 <?php /** * 判断IP是否在某个网络内 * @param $ip * @param $network * @return bool */ function ip_in_network($ip, $network) { $ip = (do ...
分类:
Web程序 时间:
2020-07-22 20:26:14
阅读次数:
96
package main import "fmt" func main() { /* 写一个函数,求两个整数之和,要求在函数体内不得使用 “+”、“-”、“*”、“/” 四则运算符号。 示例: 输入: a = 1, b = 1 输出: 2 */ var a, b = 10, 10 fmt.Print ...
分类:
其他好文 时间:
2020-07-22 11:10:21
阅读次数:
59
JDK 提供的并发容器总结 JDK 提供的这些容器大部分在 java.util.concurrent 包中。 ConcurrentHashMap: 线程安全的 HashMap CopyOnWriteArrayList: 线程安全的 List,在读多写少的场合性能非常好,远远好于 Vector. Co ...
分类:
其他好文 时间:
2020-07-21 23:25:47
阅读次数:
96
一、切片: 1、主要看指针指向位置比如 一个切片 var s []int{1,2,3,4,5,6,7}指针指向0位长度是 7 ,容量是7a := s[2:4]指针指向index为2为a 长度是 2 (元素是2,3) 容量是5 (从index为2往右算或者max_len 减去 开始index,即 7 ...
分类:
其他好文 时间:
2020-07-21 21:45:14
阅读次数:
56
chenkHandle(row){ //原页打开 // this.$router.push({path:'/duocai/detail',query:{ checkType:row.id,role:"manger"}}); //新开页 let newUrl = this.$router.resolv ...
分类:
其他好文 时间:
2020-07-21 21:33:09
阅读次数:
73
1. Crontab介绍 crontab的语法规则格式: 代表意义 分钟 小时 日期 月份 周 命令 数字范围 0~59 0~23 1~31 1~12 0~7 需要执行的命令 周的数字为 0 或 7 时,都代表“星期天”的意思。 另外,还有一些辅助的字符,大概有下面这些: 特殊字符 代表意义 *(星 ...
分类:
其他好文 时间:
2020-07-21 14:24:23
阅读次数:
87
<select name="wechat_id" id="wechat_select" lay-search> <option value="">选择公众号</option> </select> 在select标签中 加入 lay-search ...
分类:
其他好文 时间:
2020-07-21 14:18:12
阅读次数:
94