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


PHP Base_Model::before_save方法代碼示例

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


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

示例1: update_user_role

 function update_user_role($user_id, $role_ids)
 {
     $this->_db()->delete('user_role', array('user_id' => $user_id));
     if (!empty($role_ids)) {
         if (!is_array($role_ids)) {
             $role_ids = array($role_ids);
         }
         foreach ($role_ids as $role_id) {
             if (!empty($role_id)) {
                 $role_id = empty($role_id) ? 0 : $role_id;
                 $user_role = array('user_id' => $user_id, 'role_id' => $role_id);
                 Base_Model::before_save($user_role);
                 $this->_db()->insert('user_role', $user_role);
             }
         }
     }
 }
開發者ID:rip-projects,項目名稱:ark-php,代碼行數:17,代碼來源:base_user_model.php

示例2: update_tag

 function update_tag($tags, $id)
 {
     $CI =& get_instance();
     if (!is_array($tags)) {
         $tags = array($tags);
     }
     $this->db->where(array($this->_name . '_id' => $id));
     $this->db->delete('tag_' . $this->_name);
     foreach ($tags as $tag) {
         if (!empty($tag)) {
             $tag_id = $CI->_model('tag')->add($tag);
             if (!empty($tag_id)) {
                 $obj_tag = array('tag_id' => $tag_id, $this->_name . '_id' => $id);
                 Base_Model::before_save($obj_tag);
                 $this->db->insert('tag_' . $this->_name, $obj_tag);
             }
         }
     }
 }
開發者ID:rip-projects,項目名稱:judge,代碼行數:19,代碼來源:base_model.php


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