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


PHP HC_Lib::get_combinations方法代碼示例

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


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

示例1: calendar_refresh

 function calendar_refresh($model)
 {
     $final_parent_refresh = array();
     $dates = $model->get_dates();
     foreach ($dates as $date) {
         $refresh_keys = array();
         $refresh_keys[] = 'dat-' . $date;
         $refresh_keys[] = $model->user_id ? 'use-' . $model->user_id : 'use-0';
         $this_parent_refresh = HC_Lib::get_combinations($refresh_keys);
         reset($this_parent_refresh);
         foreach ($this_parent_refresh as $pr) {
             $final_parent_refresh[join('-', $pr)] = 1;
         }
     }
     $return = $final_parent_refresh;
     return $return;
 }
開發者ID:RCMmedia,項目名稱:rubicon,代碼行數:17,代碼來源:availability.php

示例2: calendar_refresh

 function calendar_refresh($model)
 {
     $refresh_keys = array();
     $refresh_keys[] = 'dat-' . $model->date;
     $refresh_keys[] = $model->location_id ? 'loc-' . $model->location_id : 'loc-0';
     $refresh_keys[] = $model->user_id ? 'use-' . $model->user_id : 'use-0';
     $parent_refresh = HC_Lib::get_combinations($refresh_keys);
     $refresh_keys2 = array();
     $changes = $model->get_changes();
     if (!array_key_exists('id', $changes)) {
         if (array_intersect(array('date', 'user_id', 'location_id'), array_keys($changes))) {
             if (array_key_exists('user_id', $changes)) {
                 $refresh_keys2[] = $changes['user_id'] ? 'use-' . $changes['user_id'] : 'use-0';
             } else {
                 $refresh_keys2[] = $model->user_id ? 'use-' . $model->user_id : 'use-0';
             }
             if (array_key_exists('location_id', $changes)) {
                 $refresh_keys2[] = $changes['location_id'] ? 'loc-' . $changes['location_id'] : 'loc-0';
             } else {
                 $refresh_keys2[] = $model->location_id ? 'loc-' . $model->location_id : 'loc-0';
             }
             if (array_key_exists('date', $changes)) {
                 $refresh_keys2[] = $changes['date'] ? 'dat-' . $changes['date'] : 'dat-0';
             } else {
                 $refresh_keys2[] = 'dat-' . $model->date;
             }
         }
     }
     if ($refresh_keys2) {
         $parent_refresh2 = HC_Lib::get_combinations($refresh_keys2);
         $parent_refresh = array_merge($parent_refresh, $parent_refresh2);
     }
     $final_parent_refresh = array();
     foreach ($parent_refresh as $pr) {
         $final_parent_refresh[join('-', $pr)] = 1;
     }
     //		$return = array_keys( $final_parent_refresh );
     $return = $final_parent_refresh;
     return $return;
 }
開發者ID:RCMmedia,項目名稱:rubicon,代碼行數:40,代碼來源:shift.php


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