Log::info('测试'); Log是一个门面 本质类是Logmanager 门面就是门面 就是代理 本质上 没有任何内在的东西 public function info($message, array $context = []) { $this->driver()->info($messag ...
分类:
其他好文 时间:
2021-01-05 11:35:40
阅读次数:
0
MongoDB语法与现有关系型数据库SQL语法比较 MongoDB语法 MySql语法 db.test.find({'name':'foobar'})<==> select * from test where name='foobar' db.test.find() <==> select *fro ...
分类:
数据库 时间:
2021-01-05 11:00:27
阅读次数:
0
Largest Rectangle in Histogram (H) 题目 Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the ...
分类:
其他好文 时间:
2021-01-05 10:40:12
阅读次数:
0
1.是否需要降维? Dimensionality reduction we normally use it to visualize our data and to find hidden information we don't normally see. Also, it is use for ...
分类:
其他好文 时间:
2021-01-04 11:30:05
阅读次数:
0
本文选取并翻译自:https://saywebsolutions.com/blog/git-github-error-fatal-couldnt-find-remote-ref-master 如果出现该错误提示,可能是因为使用了旧命令: git pull origin master master现在 ...
分类:
其他好文 时间:
2021-01-04 11:08:12
阅读次数:
0
在上一篇中我们贴出来一些代码,用来验证所有环境是不是完全搞定,只要能启动浏览器打开网址就成功了。这一步我们开始一个最简单的场景 挨着test01.py,新建test02.py,敲入如下代码 from selenium import webdriver driver = webdriver.Chrom ...
分类:
编程语言 时间:
2021-01-02 11:43:17
阅读次数:
0
1 步骤 数据库环境 创建Maven项目 导入依赖 编写MyBatis配置文件 编写MyBatis工具类 编写实体类 编写Mapper 测试 2 数据库环境 MySQL 8.0版本 create database mybatis; use mybatis; create table `user`( ...
分类:
其他好文 时间:
2021-01-02 10:36:56
阅读次数:
0
在配置正确,网络正常的情况下下载依赖jar包仍然出现Could not transfer artifact xxxxx,无法从远程获取jar包 在设置中,vm输入命令“-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowa ...
分类:
编程语言 时间:
2021-01-01 12:39:32
阅读次数:
0
//下载redis包 wget http://pecl.php.net/get/redis-3.1.6.tgz //解压 tar -zxvf redis-3.1.6.tgz //进入文件 cd redis-3.1.6 //(收集php相关的信息) phpize位置不一 自己找一下 find / -n ...
分类:
Web程序 时间:
2021-01-01 12:35:06
阅读次数:
0
The Atomic Reference Counter (Arc) type is a smart pointer that lets you share immutable data across threads in a thread-safe way. I couldn’t find any ...
分类:
其他好文 时间:
2021-01-01 12:32:52
阅读次数:
0