04 2021 档案
摘要:#用于excel表格 function getColKeys($index) { $index = (int)$index; if ($index <= 0) return; //输入检测 $dimension = ceil(log(25 * $index + 26, 26)) - 1; //算结果
阅读全文
摘要:https://www.kancloud.cn/buerdsfang/fangsongmao/832665 // 默认情况下查询会过滤软删除数据 // 如果想要获得所有的数据(包括软删除数据) User::withTrashed()->find(); User::withTrashed()->sel
阅读全文
摘要:DROP TRIGGER IF EXISTS account; delimiter $$ CREATE TRIGGER account BEFORE INSERT ON card_open FOR EACH ROW BEGIN SELECT max(account) INTO @my_auto_in
阅读全文