-4

我如何将这个 shell 翻译成 php:

db.products.find({}, {comments:{$slice: 5}}
4

1 回答 1

2

你试过什么?

这看起来像一个非常简单的案例:

db->products->find( array(), array('comments' => array( '$slice' => 5 ) ) );

简单的翻译有什么特别的问题吗?

于 2012-07-11T23:51:07.813 回答