php 7 mongo 썸네일형 리스트형 [MongoDB] php 7.X 에서 접근 방법 ### PHP 7.X 에서 mongodb 연결하는 방법이 바뀌었네요. $filter = ['uid' => $uid];$options = [ 'projection' => ['_id' => 0],];$mongo = new MongoDB\Driver\Manager('mongodb://xxx.xxx.xxx.xxx:xxxx');$query = new MongoDB\Driver\Query($filter, $options);$rows = $mongo->executeQuery('DB.COLLECTION', $query); // $mongo contains the connection object to MongoDB foreach($rows as $r){ $result = $r;} 상세한건http://php.net/man.. 더보기 이전 1 다음