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


PHP Model::find方法代碼示例

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


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

示例1: find

 /**
  * model find
  * 
  * @param object $parameters parameters
  * 
  * @return array
  */
 public static function find($parameters = null)
 {
     $data = [];
     $temp = parent::find($parameters);
     foreach ($temp as $row) {
         $data[] = $row;
     }
     return $data;
 }
開發者ID:yutin1987,項目名稱:phalpro,代碼行數:16,代碼來源:SoftModel.php

示例2: find

 public static function find($parameters = null)
 {
     // Create an unique key based on the parameters
     if (!is_array($parameters) || !array_key_exists('cache', $parameters)) {
         if (is_array($parameters)) {
             $parameters['cache'] = array("key" => __CLASS__ . self::_createKey($parameters), "lifetime" => 3600);
         } else {
             $parameters = [$parameters, 'cache' => ["key" => __CLASS__ . self::_createKey($parameters), "lifetime" => 3600]];
         }
     }
     return parent::find($parameters);
 }
開發者ID:abc2001x,項目名稱:phalcon_mode,代碼行數:12,代碼來源:UiMenus.php

示例3: find

 /**
  * Allows to query a set of records that match the specified conditions
  *
  * @param 	array $parameters
  * @return  \Phalcon\Mvc\Model\ResultsetInterface
  */
 public static function find($parameters = null)
 {
     if (!static::$_conditions) {
         return parent::find($parameters);
     }
     $conditions = static::normalizeConditions(static::$_conditions);
     if (!$parameters) {
         return parent::find($conditions);
     }
     if (is_string($parameters)) {
         $parameters .= " AND " . $conditions;
     } else {
         $parameters[0] .= " AND " . $conditions;
     }
     return parent::find($parameters);
 }
開發者ID:tashik,項目名稱:phalcon_core,代碼行數:22,代碼來源:Model.php

示例4: find

 /**
  * Allows to query a set of records that match the specified conditions
  *
  * @param mixed $parameters        	
  * @return Questions[]
  */
 public static function find($parameters = null)
 {
     return parent::find($parameters);
 }
開發者ID:nhannv56,項目名稱:hoctap,代碼行數:10,代碼來源:Questions.php

示例5: find

 /**
  * @return User[]
  */
 public static function find($parameters = array())
 {
     return parent::find($parameters);
 }
開發者ID:TheCodemasterZz,項目名稱:PhalconUserPlugin,代碼行數:7,代碼來源:User.php

示例6: find

 public static function find($parameters = null)
 {
     return parent::find(self::$needGet);
 }
開發者ID:OwLoop,項目名稱:Fresh,代碼行數:4,代碼來源:UserView.php

示例7: find

 public static function find($parameters = null)
 {
     $needFind = array_merge($parameters, self::$needGet);
     return parent::find($needFind);
 }
開發者ID:OwLoop,項目名稱:Fresh,代碼行數:5,代碼來源:ConsignmentView.php

示例8: find

 public static function find($parameters = NULL)
 {
     $results = parent::find($parameters = NULL);
     foreach ($results as $result) {
         $_oldTags = $result->tags;
     }
     return $results;
 }
開發者ID:devsnippet,項目名稱:city_site,代碼行數:8,代碼來源:Posts.php

示例9: find

 public static function find($parameters = null)
 {
     $parameters = self::getCacheableParams($parameters);
     return parent::find($parameters);
 }
開發者ID:UqiOnline,項目名稱:cphalcon7,代碼行數:5,代碼來源:Model.php

示例10: find

 public static function find($parameters = null)
 {
     $parameters = self::softDeleteFetch($parameters);
     return parent::find($parameters);
 }
開發者ID:denners777,項目名稱:api-phalcon,代碼行數:5,代碼來源:ModelBase.php


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