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


PHP discuz_table::fetch方法代碼示例

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


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

示例1: fetch

 public function fetch($bid)
 {
     if ($block = parent::fetch(dintval($bid))) {
         $block['param'] = $block['param'] ? dunserialize($block['param']) : array();
     }
     return $block;
 }
開發者ID:softhui,項目名稱:discuz,代碼行數:7,代碼來源:table_common_block.php

示例2: fetch

 public function fetch($id, $force_from_db = false)
 {
     $data = parent::fetch($id, $force_from_db);
     if ($data) {
         $data['data'] = unserialize($data['data']);
         return $data;
     } else {
         return array();
     }
 }
開發者ID:deepziyu,項目名稱:JX3PVE,代碼行數:10,代碼來源:table_mobile_wechat_resource.php

示例3: fetch

 public function fetch($id, $force_from_db = false, $fetch_archive = 0)
 {
     $data = array();
     if (!empty($id)) {
         $data = parent::fetch($id, $force_from_db);
         if (isset($this->membersplit) && $fetch_archive && empty($data)) {
             $data = C::t($this->_table . '_archive')->fetch($id);
         }
     }
     return $data;
 }
開發者ID:MCHacker,項目名稱:discuz-docker,代碼行數:11,代碼來源:discuz_table_archive.php

示例4: fetch

 public function fetch($sid, $ip = false, $uid = false)
 {
     if (empty($sid)) {
         return array();
     }
     $this->checkpk();
     $session = parent::fetch($sid);
     if ($session && $ip !== false && $ip != "{$session['ip1']}.{$session['ip2']}.{$session['ip3']}.{$session['ip4']}") {
         $session = array();
     }
     if ($session && $uid !== false && $uid != $session['uid']) {
         $session = array();
     }
     return $session;
 }
開發者ID:lemonstory,項目名稱:bbs,代碼行數:15,代碼來源:table_common_session.php

示例5: fetch

 public function fetch($id, $force_from_db = true)
 {
     return parent::fetch($id, true);
 }
開發者ID:softhui,項目名稱:discuz,代碼行數:4,代碼來源:table_forum_collection.php

示例6: fetch_by_pid

 public function fetch_by_pid($pid)
 {
     return parent::fetch($pid);
     //return DB::fetch_first('SELECT * FROM %t WHERE pid=%d', array($this->_table, $pid));
 }
開發者ID:vanloswang,項目名稱:discuzx-1,代碼行數:5,代碼來源:table_forum_hotreply_number.php


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