今天早上上班的时候,突然发现昨天好好的项目,今天报错了,具体错误信息为:SQLSTATE[HY000] [2054] Server sent charset unknown to the client. Please, report to the developers 翻译成中文为服务器向客户端发送 ...
分类:
数据库 时间:
2018-11-15 10:23:56
阅读次数:
484
server{ ... 省略 location / { index index.php index.html index.htm; 如果请求既不是一个文件,也不是一个目录,则执行一下重写规则 if (! e $request_filename) { 地址作为将参数rewrite到index.php上 ...
分类:
其他好文 时间:
2018-11-14 21:03:36
阅读次数:
201
撰写年终总结PPT大致分三个步骤(TDR三部曲): 第一步:确定大纲(THINK) 第二步:优化PPT(DESIGN) 第三步:练习演讲(REHEARSE) 让领导看见你的成绩,听明白你未来的‘宏伟计划’ 1.确定大纲 1.1 先写word确定大纲,再写PPT 1.2多参考模板,参考别人的套路,桃花 ...
分类:
其他好文 时间:
2018-11-14 16:42:38
阅读次数:
210
变量的作用 Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a ...
分类:
其他好文 时间:
2018-11-14 12:22:24
阅读次数:
183
cmd 命令提示符 cd ../ 进入D/phpstudy/www/tp5中 把build文件放入应用目录(application)中 然后再cmd中php think build进行配置。、 配置获取 use think\acade\Config;或者use Config; 获取某个配置的值ech ...
分类:
其他好文 时间:
2018-11-12 17:53:31
阅读次数:
118
TP5验证规则使用 定义验证器类: namespace app\index\validate; use think\Validate; class User extends Validate { protected $rule = [ 'name' => 'require|max:25', 'ema ...
分类:
其他好文 时间:
2018-11-12 01:18:11
阅读次数:
216
Evaluate integral $$\int_{0}^{1}{x^{-x}(1-x)^{x-1}\sin{\pi x}dx}$$ Well,I think we have $$\int_{0}^{1}{x^{-x}(1-x)^{x-1}\sin{\pi x}dx}=\frac{\pi}{e}$$ ...
分类:
其他好文 时间:
2018-11-11 15:05:15
阅读次数:
173
https://www.cnblogs.com/Renyi-Fan/p/9030567.html ...
分类:
Web程序 时间:
2018-11-10 12:42:16
阅读次数:
160
2015-3-11 phone under hr,coding is not required 1. Describe a project that you are post proud of.2. Which statistical method do you think is most over ...
分类:
其他好文 时间:
2018-11-10 10:49:16
阅读次数:
287
<?php /** * 后台总控制器 */ namespace app\common\controller; use think\Controller; use app\common\service\DataService; class Admin extends Controller { /** ...
分类:
其他好文 时间:
2018-11-07 11:35:02
阅读次数:
104