CakePHP是一個用於實現動態程式設計的開源工具;它為開發人員提供了不同類型的方法。其中 findbyid() 是 CakePHP 方法之一。 findbyid() 方法根據我們的要求從資料庫中檢索資料。例如,有時,我們需要在一秒鐘內查找特定的記錄,並且我們知道該記錄的id,以便使用findbyid()方法來取得指定的記錄。換句話說,我們可以說,不需要任何複雜的編碼,我們就可以輕鬆地從資料庫中取得所需的記錄。
廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
如前所述,模型層的工作之一是從眾多能力中獲取資訊。 CakePHP 模型類別附帶一些功能,可協助您找到此資訊、對其進行排序、對其進行分頁和引導。您將在模型中使用的最著名的工作是 Model::find ()。
CakePHP 的「查找」策略簡化了從資料集中復原資訊。 「尋找」策略可用於開發任何內容,從非常簡單的查詢到更複雜的查詢,而無需編寫太多程式碼。此外,該策略可以處理大多數 SQL 類型的需求,並且可以擴展到更詳細的 SQL 問題。在這裡,我們可以瀏覽各種模型,以了解使用「尋找」策略的要點。
現在讓我們來看看findbyid的不同條件如下:
如前所述,模型層的工作之一是從不同的能力獲取資訊。因此,CakePHP 模型類別附帶了一些功能,可以幫助您找到此資訊、對其進行排序、對其進行分頁和對其進行引導。
您將在模型中使用的最廣泛認可的工作是模型:find()。
文法:
find (string $specified type = 'specified type', array $params = array())
說明:
$params 用於將所有邊界傳遞給不同類型的 find() 並具有附帶的可能的鍵,當然,這些鍵都是任意的:
下面給了不同的查找方法:
如果我們需要列印第一個結果或當時說出單一結果,可以使用此方法。
文法:
find('first', $All parameter)
說明:
範例:
代碼:
$result = $this -> Emp-> find('first');
說明:
輸出:
它用於根據我們的要求傳回整數值。
文法:
find('count', $All parameter)
說明:
範例:
代碼:
$result = $this -> Emp-> find('count');
說明:
輸出:
它用於傳回各種不同的可能結果。事實上,它是所有 find () 變體和分頁所使用的組件。
文法:
find ('all', $All parameter) find('list')
它用於傳回有序的簇,對於任何需要清單的地方都有幫助,例如,填充輸入選擇框。
文法:
find ('list', $All parameter) find('threaded')
It is used to return a settled cluster and is fitting to utilize the parent_id field of your model information to fabricate settled outcomes.
Syntax:
find ('threaded', $All parameter)
So in this way, we can implement the find statement as per our requirement; we can also write the above statement inside the function, depending on the requirement.
Given below shows how we can use the findbyid method in CakePHP:
First, we need to create a table and insert records by using the following statement as follows:
Code:
CREATE TABLE IF NOT EXISTS `sampledemo` ( `id` char(30) NOT NULL, `EmpName` varchar(250) DEFAULT NULL, `EmpPass` varchar(40) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Now insert records in the newly created table as follows.
Code:
INSERT INTO `sampledemo` (`id`, `EmpName`, `EmpPass`) VALUES ('3', 'Siya','$2y$10$HKLH3YiZE'), ('4', 'Rohan','$2y$10$bZcoCTW'), ('5', 'Tanya','$2y$10$SnGQV8O');
Explanation:
Output:
Code:
$results=$emp->find() where(['id '=3]) toArray();
Explanation:
Output:
Now let’s see another example for better understanding as follows:
Code:
$results=$emp->find() where(['id '=4]) toArray();
Explanation:
Output:
Given below shows what happens if the findbyid() method is not working:
From the above article, we have taken in the essential idea of the CakePHP findbyid, and we also see the representation and example of the CakePHP findById. This article showed us how and when to use the CakePHP findById.
以上是CakePHP findById的詳細內容。更多資訊請關注PHP中文網其他相關文章!