摘要:
//获取某日期后三周同一天日期public static function getNextDate($date){ $return = [ date( 'Y-m-d', strtotime("$date +1 day") ), date( 'Y-m-d', strtotime("$date +1 w 阅读全文
摘要:
1.获取文件夹下图片public function albumList(){ $share_url = input('path'); $files = getImgList($share_url); //json格式输出图片路径列表} //获取图片文件列表函数function getImgList( 阅读全文
摘要:
1.前端部分:直接请求 2.后端php //zip下载public function downZip(){ $pro_code = "test"; //zip名称 //获取列表 $dir = input('path',''); //文件路径 eg: \\192.168.199.176\2020052 阅读全文
摘要:
比如两年后:date('Y-m-d',strtotime('+2 year')) 月份year改成month 阅读全文
摘要:
为了便于分析,File类型的日志还支持设置某些级别的日志信息单独文件记录,以error类型的日志为例,例如: 1.在log.php 中配置 'apart_level' => [ 'error' //error类型的日志就会单独记录到日志里面], 2.error类型日志快速记录:Log::error( 阅读全文
摘要:
1.控制器public function downPic(){ $filename = input('file','','string'); //文件所在路径 // 检查文件是否存在 if (! file_exists($filename) ) { $this->error('文件未找到'); }e 阅读全文
摘要:
1.手册样例thinkphp 5.0Db::table('think_user') ->where('name',['like','thinkphp%'],['like','%thinkphp']) ->where(function($query){ $query->where('id',['<', 阅读全文
摘要:
Ctrl+F右边选中这个Regex后带上符号就搜索不到,不要勾选这个就可以带符搜索了 阅读全文
摘要:
1.加载jquery.qrcode.min.js 2.html部分: 3.js部分:url为生成二维码的网址 附: jquery.qrcode.min.js下载 链接:https://pan.baidu.com/s/1pevNPUQPnRrVGdHH_Nj7Gg 提取码:ef5v 阅读全文
摘要:
1.html中: <div class="layui-form-item"> <label class="layui-form-label">视频:</label> <div class="layui-input-inline"> <!--存放上传后视频路径--> <input type="text 阅读全文