當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dao::find方法代碼示例

本文整理匯總了PHP中Dao::find方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dao::find方法的具體用法?PHP Dao::find怎麽用?PHP Dao::find使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Dao的用法示例。


在下文中一共展示了Dao::find方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: updateIsDeprecated

 /**
  * Checks if an update hasn't already been inserted in the database.
  *
  * @param DatabaseUpdate $update
  * @return bool true if the update has already been executed.
  */
 public function updateIsDeprecated($update)
 {
     return !!$this->versionDao->find(array('number' => $update->number, 'username' => $update->username, 'branch' => $update->branch));
 }
開發者ID:enyo,項目名稱:rincewind,代碼行數:10,代碼來源:DatabaseUpdater.php

示例2: Dao

// db select is contained with bmark_connect
if (strlen($db_type) <= 0) {
    $db_type = 'drizzle';
}
// phpinfo(); die();
// use software partition
$timer = new Benchmark_Timer();
$timer->start();
$login = 'notsolonely21';
$dao = new Dao($db_type, 'db.yaml');
$dao->connect();
$dao->find('users', 'login', $login, '=');
$dao->close();
$timer->setMarker('Test_Code_Partition');
echo "Elapsed time between Start and Test_Code_Partition: " . $timer->timeElapsed('Start', 'Test_Code_Partition') . "\n";
// use backend partition
$dao2 = new Dao($db_type, 'db.yaml');
$dao2->connect();
$dao2->find('users', 'login', $login, '=', 'mysql');
$dao2->close();
$timer->setMarker('DB_Partition');
echo "Elapsed time between Test_Code_Partition and DB_Partition: " . $timer->timeElapsed('Test_Code_Partition', 'DB_Partition') . "\n";
// use no partition
$dao3 = new Dao($db_type, 'db.yaml');
$dao3->connect();
$dao3->find('users', 'login', $login, '=', 'nopart');
$dao3->close();
$timer->setMarker('No_Partition');
echo "Elapsed time between DB_Partition and No_Partition: " . $timer->timeElapsed('DB_Partition', 'No_Partition') . "\n";
$timer->stop();
$timer->display();
開發者ID:barce,項目名稱:partition_benchmarks,代碼行數:31,代碼來源:testDao.php


注:本文中的Dao::find方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。