摘要:
国内安装Brew: /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 原文链接:https://zhuanlan.zhihu.com/p/111014448 阅读全文
摘要:
这是一个测试的三维数组: $arr = [ [ [ 'name' => 'zhangsan', 'age' => 16 ], [ 'name' => 'lisi', 'age' => 17 ], [ 'name' => 'wangwu', 'age' => 15 ], ],[ [ 'name' => 阅读全文
摘要:
线上环境用的是LNMP一键安装包安装的, 然后安装laravel之后, 发现除了根目录之后, 其余的路由访问都是404 解决方法: 在nginx站点的配置文件中加入以下指令 location / { try_files $uri $uri/ /index.php?$query_string; } 重 阅读全文
摘要:
正常的做法: 以root用户登录mysql: grant all privileges on *.* to 创建的用户名@"%" identified by "密码"; flush privileges; 例如: mysql>grant all privileges on *.* to zhangs 阅读全文
摘要:
一、 下载安装redis wget http://download.redis.io/releases/redis-4.0.2.tar.gz // 解压redis tar -zxvf redis-4.0.2.tar.gz cd redis-4.0.2.tar.gz make // 报错 // 运行m 阅读全文
摘要:
一、准备工作 将源码包上传到服务器, 我这边使用的WinSCP. subversion-1.6.1.tar.gz subversion-deps-1.6.1.tar.gz // 安装依赖包 yum install -y gcc openssl openssl-devel expat 二、安装 // 阅读全文
摘要:
最近项目中要将视频上传至阿里云对象存储OSS上,在网上找了几个方法,上传成功了,总结下... 1. 在 composer.json 中添加 阅读全文
摘要:
生成证书的时候报错: openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory openssl库位置不对 解决方法: 阅读全文
摘要:
在composer.json中添加 运行composer update 在config中添加 运行 php artisan vendor:publish 添加配置文件 方法中直接导出 注意: 引入Excel 阅读全文
摘要:
composer 修改配置文件 控制器中方法 返回的网址 阅读全文