当前位置: 首页>>代码示例>>PHP>>正文


PHP nnText::dateToDateFormat方法代码示例

本文整理汇总了PHP中nnText::dateToDateFormat方法的典型用法代码示例。如果您正苦于以下问题:PHP nnText::dateToDateFormat方法的具体用法?PHP nnText::dateToDateFormat怎么用?PHP nnText::dateToDateFormat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在nnText的用法示例。


在下文中一共展示了nnText::dateToDateFormat方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getInput

	protected function getInput()
	{
		$this->params = $this->element->attributes();

		$label = $this->get('label');
		$format = $this->get('format');

		$date = JFactory::getDate();

		$tz = new DateTimeZone(JFactory::getApplication()->getCfg('offset'));
		$date->setTimeZone($tz);

		if ($format)
		{
			if (strpos($format, '%') !== false)
			{
				require_once JPATH_PLUGINS . '/system/nnframework/helpers/text.php';
				$format = nnText::dateToDateFormat($format);
			}
			$html = $date->format($format, 1);
		}
		else
		{
			$html = $date->format('', 1);
		}

		if ($label)
		{
			$html = JText::sprintf($label, $html);
		}

		return '<div class="nn_block nn_title">' . $html . '</div>';
	}
开发者ID:networksoft,项目名称:seekerplus2.com,代码行数:33,代码来源:datetime.php

示例2: dateToDateFormat

 static function dateToDateFormat($dateFormat)
 {
     require_once __DIR__ . '/text.php';
     return nnText::dateToDateFormat($dateFormat);
 }
开发者ID:jmangarret,项目名称:webtuagencia24,代码行数:5,代码来源:functions.php

示例3: convertDateToString

 public function convertDateToString($string, $extra)
 {
     // Check if string could be a date
     if (strpos($string, '-') == false || preg_match('#[a-z]#i', $string) || !strtotime($string)) {
         return $string;
     }
     if (!$extra) {
         $extra = JText::_('DATE_FORMAT_LC2');
     }
     if (strpos($extra, '%') !== false) {
         $extra = nnText::dateToDateFormat($extra);
     }
     return JHtml::_('date', $string, $extra);
 }
开发者ID:naka211,项目名称:studiekorrektur,代码行数:14,代码来源:tags.php

示例4: replaceVars

 function replaceVars(&$str)
 {
     if (!(strpos($str, '[[user:') === false)) {
         if (preg_match_all('#\\[\\[user\\:([^\\]]+)\\]\\]#', $str, $matches, PREG_SET_ORDER) > 0) {
             $user = JFactory::getUser();
             $contact = null;
             $db = JFactory::getDBO();
             $query = $db->getQuery(true);
             foreach ($matches as $match) {
                 if ($match['1'] == 'password' || $match['1']['0'] == '_') {
                     $str = str_replace($match['0'], '', $str);
                 } else {
                     if (isset($user->{$match['1']})) {
                         $str = str_replace($match['0'], $user->{$match['1']}, $str);
                     } else {
                         if (!$contact) {
                             $query->clear()->select('c.*')->from('#__' . $this->_config->contact_table . ' as c')->where('c.user_id = ' . (int) $user->id);
                             $db->setQuery($query);
                             $contact = $db->loadObject();
                         }
                         if (isset($contact->{$match['1']})) {
                             $str = str_replace($match['0'], $contact->{$match['1']}, $str);
                         } else {
                             $str = str_replace($match['0'], '', $str);
                         }
                     }
                 }
             }
         }
     }
     if (!(strpos($str, '[[date:') === false)) {
         if (preg_match_all('#\\[\\[date\\:([^\\]]+)\\]\\]#', $str, $matches, PREG_SET_ORDER) > 0) {
             require_once JPATH_PLUGINS . '/system/nnframework/helpers/text.php';
             foreach ($matches as $match) {
                 if ($match['1'] && !(strpos($match['1'], '%') === false)) {
                     $match['1'] = nnText::dateToDateFormat($match['1']);
                 }
                 $replace = JHtml::_('date', time(), $match['1']);
                 $str = str_replace($match['0'], $replace, $str);
             }
         }
     }
     if (!(strpos($str, '[[random:') === false)) {
         while (preg_match('#\\[\\[random\\:([0-9]+)-([0-9]+)\\]\\]#', $str, $match)) {
             $search = '#' . preg_quote($match['0'], "#") . '#';
             $replace = rand((int) $match['1'], (int) $match['2']);
             $str = preg_replace($search, $replace, $str, 1);
         }
     }
 }
开发者ID:shamusdougan,项目名称:Sapient_Web,代码行数:50,代码来源:item.php


注:本文中的nnText::dateToDateFormat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。