以前写了一篇关于PHP用PHPExcel导出MySQL数据到Excel表格 的文章。现在再写一篇PHP用PHPExcel导入Excel表格的数据到MySQL的文章,作为姊妹篇。 代码如下: 服务端: //上传方法 public function upload() { header("Content- ...
分类:
数据库 时间:
2020-07-03 12:30:46
阅读次数:
65
最近在把一个c端的项目重构成首屏服务端渲染(SSR:server side render) 项目用到的技术: React 、webpack、koa2、webpack 对于重构成SSR,redux并不是必须的,所以没用redux 本篇文章先讲述一些理论的东西,之后会写代码篇 一、 什么是服务端渲染 简 ...
分类:
其他好文 时间:
2020-07-03 10:23:10
阅读次数:
62
Maximum Subarray (E) 题目 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and retur ...
分类:
其他好文 时间:
2020-07-03 09:14:00
阅读次数:
76
总所周知,传参 或 使用变量给另一个变量赋值时,如果是基本数据类型(null,number,undefined,string,boolean)则是直接复制,但是如果是非基本数据类型(array,function,object等),则是复制对应的引用。 浅拷贝指的是只会复制第一层对象,但是当对象是引用 ...
分类:
其他好文 时间:
2020-07-03 01:18:19
阅读次数:
85
译者前言:相信凡是用过 zip() 内置函数的人,都会赞同它很有用,但是,它的最大问题是可能会产生出非预期的结果。PEP-618 提出给它增加一个参数,可以有效地解决大家的痛点。 这是 Python 3.10 版本正式采纳的第一个 PEP,「Python猫」一直有跟进社区最新动态的习惯,所以翻译了出 ...
分类:
编程语言 时间:
2020-07-03 01:15:02
阅读次数:
94
GMV指标获取的全调度流程 import.job文件,第一步,从mysql导入数据 type=command do_date=${dt} command=/home/atguigu/bin/sqoop_import.sh all ${do_date} ods.job文件 type=command d ...
分类:
其他好文 时间:
2020-07-03 01:04:27
阅读次数:
73
登录主要参考https://www.cnblogs.com/zhuchunyu/p/10978093.html以及https://www.zhihu.com/question/36081767 通过观察发现网易云音乐不同的请求其参数加密方法是不变的,只是加密的内容不同 登录页的加密内容是 {"pho ...
分类:
其他好文 时间:
2020-07-02 22:10:51
阅读次数:
141
# 查看当前文件夹下所有文件,包括隐藏文件 ls -a # 或者 ls --all # 查看当前文件夹下所有文件(-a)详细信息(-l),以较为适合理解格式显示(-h) ls -lha 查看命令帮助信息 <command>--help man<command> man 中查看文档操作 b和 f用的比 ...
分类:
系统相关 时间:
2020-07-02 21:59:24
阅读次数:
109
1.无用户名(最简单配置) vIOS1: r1(config)#line vty 0 4r1(config-line)#password ciscor1(config-line)#transport input all r1(config-line)#exir1(config)#enable sec ...
分类:
Web程序 时间:
2020-07-02 21:56:54
阅读次数:
82
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:
其他好文 时间:
2020-07-02 19:53:26
阅读次数:
70