自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 收藏
  • 关注

原创 非常实用的博客链接总结

/** * Redis的各种用途以及使用场景**/https://blog.csdn.net/u011277123/article/details/78692603/** * 当在客户端中发送一个请求在网络中各层经历了什么**/https://blog.csdn.net/wangkeke1996/article/details/81747369/** * 输入url。按下回车键后...

2020-06-28 14:52:27 553 1

原创 php header下载

<?php//设置文件最长执行时间set_time_limit(0);ini_set('memory_limit', '512M');if(isset($_SERVER['REQUEST_METHOD']) && !strcasecmp($_SERVER['REQUEST_METHOD'],'POST')){ $tmp_arr = $_POST;}if($...

2019-07-10 10:19:22 258

原创 js中读取php设置的cookie

/*** 在js中加入函数 -- 而后正常调用即可**/function getCookie(c_name){ if (document.cookie.length > 0){ c_start = document.cookie.indexOf(c_name + "="); if (c_start != -1){ c_st...

2019-07-03 10:31:07 619

原创 文件各种上传,离不开的表单

目录:利用表单实现文件上传表单异步上传(jquery.form插件)模拟表单数据上传(FormData)分片上传使用HTML5 拖拽、粘贴上传上传插件(WebUploader)/** * 原文网址**/https://www.cnblogs.com/zhaopei/p/upload.html...

2019-05-27 21:25:01 168

原创 PHP 分布式集群中session共享问题以及session有效期的设置

/*** 参考友情链接**/https://blog.csdn.net/m_nanle_xiaobudiu/article/details/81177698

2019-05-15 20:41:47 301

原创 tp5.1实现验证码功能

/*** 参考链接**/https://blog.csdn.net/resilient/article/details/88997786

2019-05-09 17:26:56 456

原创 初始Golang的Gin框架

/** * 安装Gin框架命令 * https://gin-gonic.com/*/ go get -u github.com/gin-gonic/gin/** * Gin详细使用方法见下链接*/https://www.jianshu.com/p/98965b3ff638/

2019-05-06 20:00:52 234

原创 初始Golang的Beego框架

/** * 安装Beego框架命令 * https://beego.me/*/ go get github.com/astaxie/beego/** * 安装bee工具命令*/ go get github.com/beego/bee/** * 通过bee工具创建项目*/ bee new 项目名称(自定义)/* * 运行项目命令*/ bee run...

2019-04-29 11:28:57 376

原创 初始Python的Django框架

/** * 安装Django命令 * 我是采用的这种方式 * 官网提供更多的方式 * https://www.djangoproject.com/download/*/ pip install Django==2.2/** * 查看是否安装成功命令 * 是则显示安装的版本 * 否则收到错误消息“没有名为django的模块”*/ python -m django --vers...

2019-04-29 11:18:31 192

原创 ajax即点即改

<script> $(function () { //将span标签更改为input标签 $(document).on("dblclick",'#node_title',function () { var con = $(this).text().trim(); $(this).parent().html("<...

2019-04-12 09:30:36 307

原创 递归实现无限极分类

public function getTree($array, $pid =0, $level = 0) { //声明静态数组,避免递归调用时,多次声明导致数组覆盖 static $list = []; foreach ($array as $key => $value){ //第一次遍历,找到父节点为根节点的节...

2019-04-12 09:26:49 248

原创 python基础数据类型

###########数据类型--整数,浮点数,字符串##############ord()函数获取字符的整数表示chr()函数把编码转换为对应的字符str通过encode()方法可以编码为指定的bytes要把bytes变为str,就需要用decode()方法如果bytes中只有一小部分无效的字节,可以传入errors='ignore'忽略错误的字节:len()函数计算的是str的字符...

2019-04-09 20:30:32 195

原创 Linux 命令大全

1、文件管理cat chattr chgrp chmodchown cksum cmp diffdiffstat file find gitgitview indent cut lnless locate lsattr mattribmc mdel mdir mktempmore mmove mread mrenmtools mtoolstest mv odpaste patch...

2019-04-09 20:28:27 1254

原创 php+ajax文件上传

/*** css代码*/.file-box { position: relative; display: inline-block;}.file-box img { width: 50px; height: 50px; border-radius: 50%; position: absolute; top: -30px; l...

2019-04-07 15:20:23 532

原创 layui导入excel表格文件

沟通交流群:QQ群号: 555056599github地址:https://github.com/wangerzi/layui-excel功能演示地址:http://excel.wj2015.com/** * 需要引用的外部文件 */<link rel="stylesheet" type="text/css" href="layui/css/layui.css"&gt...

2019-04-02 15:15:36 8058 3

原创 layui导出excel表格文件

沟通交流群:QQ群号: 555056599github地址:https://github.com/wangerzi/layui-excel功能演示地址:http://excel.wj2015.com注:不能直接在IFRAME里边直接调用导出方法,因为浏览器会限制这种导出行为,如有遇到此类情况,可使用 parent.layui.excel.exportExcel() 的方式调用父级...

2019-04-02 10:28:28 9639

原创 layui ajax文件上传

/*** Html代码**/<div class="layui-form-item" id="img"> <label class="layui-form-label"> <span class="x-red">*</span>文章主图 </label> <button type="bu...

2019-03-22 16:44:04 3059

原创 BaiduTemplate模板引擎

//直接复制即可使用,记得要下载baiduTemplate.js/*** 个人使用习惯* 官网的使用是模板替换的方式,但是在使用过程中* 我更偏向于哪块代码需要替换,直接拿标签包住的方法* <script id="父级类名" type="text/html">要替换的内容</script>* 这样避免了重复起名称的尴尬,下面是官网的使用方法**/<!-...

2019-03-22 16:15:18 259

原创 BaiduTemplate导出Word文件

/*** 首先需要引入两个js文件**/<script type="text/javascript" src="http://www.xdocin.com/xdoc.js"></script> <script type="text/javascript" src="http://www.xdocin.com/baiduTemplate.js">&lt...

2019-03-22 15:46:09 271

原创 PHP插件phpword

/*** composer下载命令**/composer require phpoffice/phpword

2019-03-21 16:47:33 586

原创 PHP插件phpspreadsheet

/*** composer下载命令**/composer require phpoffice/phpspreadsheet

2019-03-21 16:45:47 822

原创 PHP插件QueryList采集

/** * composer命令下载querylist插件**/ composer require jaeger/querylist/*** 在控制器中引用下载完的querylist类**/ use QL\QueryList;/*** 简单使用**/ $data = QueryList::get('https://www.baidu.com/s?wd=QueryList'...

2019-03-21 10:31:45 691

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除