PHP MongoDB แสดงข้อมูล ด้วย find บทความนี้สอนใช้คำสั่ง find เพิ่มแสดงข้อมูลทั้งหมดในตาราง หรือ collection ชื่อ color จากฐานข้อมูล example ของ MongoDB พร้อมแสดงผลลัพธ์ออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง PHP MongoDB แสดงข้อมูล ด้วย find
<?php
require_once __DIR__ . '/vendor/autoload.php';
$collection = (new MongoDB\Client)->example->color;
$c = $collection->find();
foreach ($c as $v) {
echo $v['_id']." | ".$v['name']."<br/>";
}
?>
ผลลัพธ์
62e3593647e7ad89f057ca52 | red
62e3594047e7ad89f057ca53 | green
62e3594a47e7ad89f057ca54 | blue
62ec9e979aeeeda9710a9f5b | black
PHP MongoDB แสดงข้อมูล จากตัวอย่างใช้คำสั่ง find ดึงข้อมูลทั้งหมดจาก collection ชื่อ color ฐานข้อมูล example และใช้คำสั่ง foreach วนลูปแสดงข้อมูลออกสู่หน้าจอ ประกอบด้วย find _id และ name ด้วยคำสั่ง echo