摘要:
命令使用mongo shell 执行 1.mongo中增加新字段 mongo shell 进入后执行use table选中要添加字段的库 db.getCollection('表名').update({}, {$set: {filed1:"",filed2:0}}) 2.删除字段 db.getColl 阅读全文
摘要:
public function SafeFilter($arr){ $ra=Array('/([\x00-\x08,\x0b-\x0c,\x0e-\x19])/','/script/','/javascript/','/vbscript/','/expression/','/applet/','/m 阅读全文
摘要:
1.以某字段开头的数据查询条件 $title = input('param.title'); $where['title'] = new \MongoDB\BSON\Regex("^{$title}",'i'); //已title开头的字 2.原生用法: //query 查询列表 $command 阅读全文
摘要:
Cd到MongoDb安装目录到bin目录下,执行mongo命令即可,其他命令参考手册:https://www.runoob.com/mongodb/mongodb-create-collection.html 注:不能用的话配置环境变量,路径到mongodb安装目录bin路径之下 阅读全文
摘要:
1、Mongodb安装 Mongodb安装参照此文档: https://www.runoob.com/mongodb/mongodb-window-install.html php的mongodb扩展安装: a、根据本地环境下载对应的扩展,下载地址: https://pecl.php.net/pac 阅读全文
摘要:
function subText($text, $length){ if (mb_strlen($text, 'utf8') > $length) { return mb_substr($text, 0, $length, 'utf8') . '......'; } else { return $t 阅读全文
摘要:
1.支付宝开放平台添加应用并且签约快捷手机wap支付(应用添加不做详细说明) 2.下载demo,文档中心SDK&Demo, 3.个人中心秘钥管理,查看商户appID,商户私钥,支付宝公钥,商户公钥(填入支付宝应用中,项目里面不需要配置),可以使用支付宝开放平台生成然后配置到项目里面 4.下载好的项目 阅读全文
摘要:
1. 解决: 先pull,执行git pull origin 分支名称;然后再执行 git push origin 分支名称 2.git报remote HTTP Basic Access denied错误的解决方法 报错::remote: HTTP Basic: Access denied fata 阅读全文
摘要:
1.运行rm -rf 文件名称 2.不能删除对应文件并且提示“rm: cannot remove ‘./.user.ini’: Operation not permitted” 操作: 1.进入.user.ini所在的根目录 2.运行chattr -i ./.user.ini 然后在运行:rm -r 阅读全文
摘要:
Chrome浏览器(欧朋也可): 按F12打开调试页面,同时按下ctrl + shift + p,输入命令Capture full size screenshot并回车,浏览器会自动截取整个网页内容并保存为图片。 阅读全文