07 2021 档案

摘要:如何配置用户名和邮箱 git config --global user.name "用户名" //配置全局的git提交用户名 git config --global user.email "邮箱" //配置全局的git提交者的邮箱 将线上仓库克隆到本地 git clone 仓库地址 将本地新增的文件 阅读全文
posted @ 2021-07-10 11:05 木名字 阅读(901) 评论(0) 推荐(0)
摘要:ealsticsearch只是后端提供各种api,那么怎么直观的使用它呢?elasticsearch-head将是一款专门针对于elasticsearch的客户端工具。 GitHub托管地址:https://github.com/mobz/elasticsearch-head 如果出现错误 原因:这 阅读全文
posted @ 2021-07-10 10:12 木名字 阅读(659) 评论(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 木名字 阅读(167) 评论(0) 推荐(0)
摘要:PHP 敏感词过滤 //敏感词替换 public function test(){ $string = input('text'); //接收过来的值 $list = ['嘿嘿','马保国','奥利给','小可爱']; //定义敏感词数组 $result = $this->sensitive($li 阅读全文
posted @ 2021-07-07 11:53 木名字 阅读(199) 评论(0) 推荐(0)