Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このシェルをphpに変換するにはどうすればよいですか?
db.products.find({}, {comments:{$slice: 5}}
何を試しましたか?
これは非常に単純なケースのように見えます:
db->products->find( array(), array('comments' => array( '$slice' => 5 ) ) );
単純な翻訳に特に問題はありますか?