PHP前端开发

如何将MongoDB 聚合查询中的 $substr 操作符转换为 PHP 代码?

百变鹏仔 2天前 #PHP
文章标签 转换为

mongo $substr转换为php

在php中,可以使用"$substr"管道操作符来从字符串中提取子字符串。其语法为:

$substr: ["<string>", <start>, <length>]

其中:

问题中聚合查询的php实现

立即学习“PHP免费学习笔记(深入)”;

要将问题中提供的mongo聚合查询转换为php,可以使用以下代码:

$this->mongo_Collelection->aggregate(    // $where1省略    [        '$project' => [            'date' => ['$substr' => ['time_start', 0, 10]],            'income' => 1,        ],    ],    [        '$group' => [            '_id' => ['date' => '$date'],            'sumincome' => ['$sum' => '$income'],        ],    ],    // $where2省略);

在这个查询中: