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


PHP JDate::setoffset方法代碼示例

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


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

示例1: JDate

                date_default_timezone_set($city['timezone_id']);
                return true;
            }
        }
    }
    date_default_timezone_set($defaultimeZone);
    return false;
}
$conf =& JFactory::getConfig();
//set_tz_by_offset($conf->getValue('config.offset'));
global $DT_config, $month_arr, $now, $xhtml_url, $amp, $sign_up_redirect;
jimport('joomla.application.module.helper');
jimport('joomla.utilities.date');
$now = new JDate('now');
//$now = new JDate(strftime('%Y-%m-%d %H:%M:%S'));
$now->setoffset($conf->getValue('config.offset'));
//pr(strftime('%Y-%m-%d %H:%M:%S %Z%n'));
//date_default_timezone_set($defaultimeZone);
//$now->setOffset($conf->getValue('config.offset'));
$month_arr = array('01' => JText::_('DT_JAN'), '02' => JText::_('DT_FEB'), '03' => JText::_('DT_MAR'), '04' => JText::_('DT_APR'), '05' => JText::_('DT_MAY'), '06' => JText::_('DT_JUN'), '07' => JText::_('DT_JUL'), '08' => JText::_('DT_AUG'), '09' => JText::_('DT_SEP'), '10' => JText::_('DT_OCT'), '11' => JText::_('DT_NOV'), '12' => JText::_('DT_DEC'));
$xhtml_url = false;
if ($xhtml_url) {
    $amp = "&";
} else {
    $amp = "&";
}
if (!function_exists('pr')) {
    function pr($data = array())
    {
        //return;
        /*
開發者ID:reeleis,項目名稱:ohiocitycycles,代碼行數:31,代碼來源:defines.php

示例2: shiftDates

 function shiftDates(&$data)
 {
     $this->dtstart;
     $startdate = new JDate($this->parent_dtstart);
     $newstartdate = new JDate($data['dtstart']);
     $startdate_offset = $newstartdate->toUnix() - $startdate->toUnix();
     $arrDates = array('startdate', 'cut_off_date', 'bird_discount_date', 'latefeedate', 'change_date', 'cancel_date', 'dtend');
     foreach ($arrDates as $name) {
         if (isset($data[$name]) && $data[$name] != "" && $data[$name] != "0000-00-00") {
             $diff_offset = (strtotime($data[$name]) - $startdate->toUnix(false) + $startdate_offset) / 3600;
             $startdate->setoffset($diff_offset);
             $data[$name] = $startdate->toFormat('%Y-%m-%d');
         } else {
             $data[$name] = "";
         }
     }
 }
開發者ID:reeleis,項目名稱:ohiocitycycles,代碼行數:17,代碼來源:event.php


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