PHP 将PHP date()样式dateFormat转换为等效的jQuery UI datepicker字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将PHP date()样式dateFormat转换为等效的jQuery UI datepicker字符串相关的知识,希望对你有一定的参考价值。

function dateStringToDatepickerFormat($dateString)
{
	$pattern = array(
		
		//day
		'd',		//day of the month
		'j',		//3 letter name of the day
		'l',		//full name of the day
		'z',		//day of the year
		
		//month
		'F',		//Month name full
		'M',		//Month name short
		'n',		//numeric month no leading zeros
		'm',		//numeric month leading zeros
		
		//year
		'Y', 		//full numeric year
		'y'		//numeric year: 2 digit
	);
	$replace = array(
		'dd','d','DD','o',
		'MM','M','m','mm',
		'yy','y'
	);
	foreach($pattern as &$p)
	{
		$p = '/'.$p.'/';
	}
	return preg_replace($pattern,$replace,$dateString);
}

以上是关于PHP 将PHP date()样式dateFormat转换为等效的jQuery UI datepicker字符串的主要内容,如果未能解决你的问题,请参考以下文章

日期转换(Date DateFormate SimpleDateFormate)

您将如何使用 CSS 设置 PHP 后缀的样式?

php怎么将当前时间戳增加一year

将月日年添加到PHP date()

如何将样式(css + html)与php隔离

将 VB Date() 和 DateAdd 函数转换为 PHP