摘要: npm install --registry=https://registry.npm.taobao.org 阅读全文
posted @ 2020-02-20 16:15 多啦C梦 阅读(15557) 评论(0) 推荐(2) 编辑
摘要: github/gitee码云 You do not have permission to pull from the repository https://blog.csdn.net/hj960511/article/details/83046103 git报错:You do not have pe 阅读全文
posted @ 2020-01-03 11:55 多啦C梦 阅读(588) 评论(0) 推荐(0) 编辑
摘要: laravel-excel maatwebsite/excel 新版中文文档 原文https://blog.csdn.net/chenqiang088/article/details/88827179 项目从 5.2 升级到了 5.7,Excel 的导入导出,使用的 maatwebsite/exce 阅读全文
posted @ 2019-12-30 18:05 多啦C梦 阅读(11639) 评论(1) 推荐(1) 编辑
摘要: laravel-excel.com官网英文站网址 https://docs.laravel-excel.com/3.1/exports/ 阅读全文
posted @ 2019-12-30 18:04 多啦C梦 阅读(213) 评论(0) 推荐(0) 编辑
摘要: composer查看全局设置: composer config -gl1设置composer镜像为国内镜像: composer config -g repo.packagist composer https://packagist.phpcomposer.com1上面地址前几天崩了,可以用下面这个: 阅读全文
posted @ 2019-12-30 16:10 多啦C梦 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: 配置ssh,并重启 具体百度搜索 阅读全文
posted @ 2019-12-18 15:14 多啦C梦 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: 在尝试过很多方法不管用之后,下面是终极解决方案,需要root用户或者sudo执行 1. $ sudo vim /etc/sysconfig/network-scripts/ifcfg-ens33 2. 将ONBOOT改为yes,wq!保存退出 3. 重新启动网络 $ service network 阅读全文
posted @ 2019-10-27 09:44 多啦C梦 阅读(3296) 评论(0) 推荐(0) 编辑
摘要: function get_rand_str($randLength=6,$addtime=1,$includenumber=0){ if ($includenumber){ $chars='abcdefghijklmnopqrstuvwxyzABCDEFGHJKLMNPQEST123456789'; }else { $chars='abcdefghijklmnopqrstuvwxyz'; } $l 阅读全文
posted @ 2019-10-14 21:30 多啦C梦 阅读(288) 评论(0) 推荐(0) 编辑
摘要: C:\phpStudy\PHPTutorial\Apache\conf 里面的 vhosts.conf 配置多域名访问 <VirtualHost *:80> DocumentRoot "C:/phpStudy/PHPTutorial/WWW/ams/public/" ServerName ams E 阅读全文
posted @ 2019-10-14 14:37 多啦C梦 阅读(890) 评论(0) 推荐(0) 编辑
摘要: web.php Route::group(['domain' => 'www.a.com'], function () { Route::any('/','\App\Http\Controllers\IndexController@index'); }); Route::group(['domain 阅读全文
posted @ 2019-10-08 15:25 多啦C梦 阅读(2411) 评论(0) 推荐(0) 编辑