溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP7查詢數(shù)據(jù)-executeQuery函數(shù)

發(fā)布時間:2020-06-07 04:05:31 來源:網(wǎng)絡(luò) 閱讀:1408 作者:素顏豬 欄目:web開發(fā)

<?php


// 1.創(chuàng)建數(shù)據(jù)庫連接對象

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");


// 2.設(shè)置查詢條件,返回鍵,排序規(guī)則

$filter = ['index' => ['$gt' => 1]];

$options = [

    'projection' => ['_id' => 0],

    'sort' => ['index' => -1],

];


// 3.創(chuàng)建查詢對象

$query = new MongoDB\Driver\Query($filter, $options);


// 4.指定查詢的數(shù)據(jù)庫中的集合,查詢test庫的sites集合

$cursor = $manager->executeQuery('test.sites', $query);


// 循環(huán)遍歷查詢的結(jié)果

foreach ($cursor as $document) {

// 調(diào)用將對象轉(zhuǎn)換為數(shù)組函數(shù)

    $arr = object2array($document);

    var_dump($arr['name']);

}


/**

 * 對象轉(zhuǎn)換為數(shù)組

 * @param  object $object 需要轉(zhuǎn)換的對象

 * @return array          轉(zhuǎn)換后的數(shù)組

 */

function object2array($object) {

    $object =  json_decode( json_encode( $object),true);

    return  $object;

}

PHP7查詢數(shù)據(jù)-executeQuery函數(shù)

PHP7查詢數(shù)據(jù)-executeQuery函數(shù)

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI