摘要: 如何配置用户名和邮箱 git config --global user.name "用户名" //配置全局的git提交用户名 git config --global user.email "邮箱" //配置全局的git提交者的邮箱 将线上仓库克隆到本地 git clone 仓库地址 将本地新增的文件 阅读全文
posted @ 2021-07-10 11:05 木名字 阅读(861) 评论(0) 推荐(0) 编辑
摘要: ealsticsearch只是后端提供各种api,那么怎么直观的使用它呢?elasticsearch-head将是一款专门针对于elasticsearch的客户端工具。 GitHub托管地址:https://github.com/mobz/elasticsearch-head 如果出现错误 原因:这 阅读全文
posted @ 2021-07-10 10:12 木名字 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 效果图 html 代码 <!DOCTYPE html> <html> <head> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta charset="utf-8"/> 阅读全文
posted @ 2021-07-07 14:40 木名字 阅读(133) 评论(0) 推荐(0) 编辑
摘要: PHP 敏感词过滤 //敏感词替换 public function test(){ $string = input('text'); //接收过来的值 $list = ['嘿嘿','马保国','奥利给','小可爱']; //定义敏感词数组 $result = $this->sensitive($li 阅读全文
posted @ 2021-07-07 11:53 木名字 阅读(168) 评论(0) 推荐(0) 编辑
摘要: composer 安装 官方地址:https://getcomposer.org/download/ 下载地址:https://getcomposer.org/Composer-Setup.exe 下载后直接安装即可 1 2 查看composer 版本 3 4 composer -v 5 6 7 c 阅读全文
posted @ 2021-05-25 11:52 木名字 阅读(646) 评论(0) 推荐(0) 编辑
摘要: php laravel URL 伪静态 Route::get('show{id}.html',['as'=>'products.detail','uses'=>'companyController@show']) ->where('id','\d+'); php .htaccess 配置伪静态 <I 阅读全文
posted @ 2021-04-09 13:50 木名字 阅读(1260) 评论(0) 推荐(0) 编辑